Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

py-modernizepy 现代化

Agent Skill

py-modernize 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

27

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:py-modernize(py 现代化)
来源仓库:https://github.com/l-mb/python-refactoring-skills
仓库路径:skills/py-modernize
安装命令:
npx skills add https://github.com/l-mb/python-refactoring-skills --skill py-modernize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/l-mb/python-refactoring-skills --skill py-modernize

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景快速定位候选结果。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中处理信息搜索类任务时使用。
  • 可结合来源仓库和原始 README 核验具体用法和功能边界。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件操作。
  • 涉及敏感操作时应注意运行环境隔离和数据保护。

SKILL.md

Python Codebase Modernization

Upgrade Python projects to use modern tooling, syntax, and patterns following Engineering Charter principles.

Objectives

  1. Migrate from pip to uv for faster dependency management
  2. Upgrade Python syntax to 3.13+ modern patterns
  3. Replace deprecated APIs and patterns
  4. Update tooling to current best practices
  5. Ensure pyproject.toml is the single source of configuration

Required Tools

Install uv globally (via package manager): sudo zypper install uv or pip install --user uv Add to [dependency-groups] dev: "pyupgrade", "ruff"

  • uv: Fast package installer (pip replacement)
  • pyupgrade: Auto-upgrade syntax to newer Python
  • ruff: Modern linter with UP rules

Permissions: Run py-quality-setup first to configure .claude/settings.local.json with all needed tool permissions.

Package Manager: pip → uv

Why uv?

  • 10-100x faster than pip
  • Better dependency resolution
  • Improved caching
  • Compatible with pip (drop-in replacement)
  • Actively developed by Astral (same team as ruff)

Migration Workflow

# 1. Verify current setup
cat requirements.txt setup.py setup.cfg pyproject.toml

# 2. Install uv globally (not recommended, ask user to install via package manager)
# curl -LsSf https://astral.sh/uv/install.sh | sh

# 3. Replace venv creation
# OLD: python -m venv venv
uv venv

# 4. Replace pip install
# OLD: pip install -e ".[dev]"
uv pip install -e ".[dev]"

# 5. Replace pip install from requirements.txt
# OLD: pip install -r requirements.txt
uv pip install -r requirements.txt

# 6. Compile requirements (faster dependency resolution)
uv pip compile pyproject.toml -o requirements.txt

# 7. Sync environment (install exactly what's in requirements.txt)
uv pip sync requirements.txt

Update CI/CD

# .github/workflows/test.yml

# BEFORE
- name: Install dependencies
  run: |
    python -m venv venv
    source venv/bin/activate
    pip install -e ".[dev]"

# AFTER
- name: Install uv
  uses: astral-sh/setup-uv@v1

- name: Install dependencies
  run: |
    uv venv
    source .venv/bin/activate
    uv pip install -e ".[dev]"

Update Documentation

Update README.md:

<!-- BEFORE -->
## Development Setup

python -m venv venv
source venv/bin/activate
pip install -e ".[dev]"

<!-- AFTER -->
## Development Setup

# Install uv if not already installed (via package manager preferred)
# sudo zypper install uv  # openSUSE
# or: pip install --user uv

uv venv
source .venv/bin/activate
uv pip install -e ".[dev]"

Python Syntax Modernization

Target Version

Set target in pyproject.toml:

[project]
requires-python = ">=3.13"

[tool.pyupgrade]
target-version = "py313"

[tool.ruff]
target-version = "py313"

[tool.ruff.lint]
select = ["UP"]  # Enable pyupgrade rules

Run Syntax Upgrades

# Using pyupgrade directly (modifies files in-place)
pyupgrade --py313-plus **/*.py

# Using ruff (shows what would change)
ruff check . --select UP
ruff check . --select UP --fix  # Apply fixes

# Verify changes
git diff

# Run tests to ensure functionality preserved
pytest

Common Modernizations

Run pyupgrade --py313-plus. or ruff check. --select UP to auto-upgrade:

  • Type hints: List[str]list[str], Optional[int]int | None
  • Remove __future__: imports (built-in 3.11+)
  • String formatting: % or .format() → f-strings
  • Type unions: Union[int, str]int | str
  • Walrus operator: if x:= func(): (reduce temp variables)
  • Match statements: Replace long if/elif chains (3.10+)
  • Pathlib: Replace os.path with Path objects
  • Dataclasses: Replace manual __init__ with @dataclass

Configuration Modernization

Consolidate setup.py/setup.cfg/requirements.txt → pyproject.toml.

Note: For complete pyproject.toml configuration including ruff, mypy, and basedpyright, see py-quality-setup.

Basic structure:

[project]
name = "myproject"
version = "1.0.0"
requires-python = ">=3.13"
dependencies = ["requests", "pydantic"]

[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"

After: rm setup.py setup.cfg; uv pip install -e.; pytest

Deprecated Pattern Updates

Common deprecations to fix:

  • collections.Iterablecollections.abc.Iterable (deprecated 3.3, removed 3.10)
  • datetime.utcnow()datetime.now(UTC) (deprecated 3.12)
  • datetime.utcfromtimestamp()datetime.fromtimestamp(ts, UTC) (deprecated 3.12)
  • imp module → importlib (removed 3.12)
  • typing.List, typing.Dictlist, dict (3.9+)
  • typing.Optional[X]X | None (3.10+)
  • typing.Union[X, Y]X | Y (3.10+)

Search for deprecated patterns:

# Find deprecated datetime usage
grep -rn "datetime.utcnow\|datetime.utcfromtimestamp" --include="*.py" .

# Find old typing imports
grep -rn "from typing import.*List\|from typing import.*Dict\|from typing import.*Optional" --include="*.py" .

# Find old collections imports
grep -rn "from collections import.*Callable\|from collections import.*Iterable" --include="*.py" .

Verification Checklist

  • uv is used for venv creation and package installation
  • pyproject.toml is the single configuration source (no setup.py/setup.cfg)
  • requires-python = ">=3.13" is set in pyproject.toml
  • ruff check. --select UP reports no issues (or only accepted exceptions)
  • No deprecated datetime.utcnow() or datetime.utcfromtimestamp() usage
  • No old-style typing imports (List, Dict, Optional, Union)
  • CI/CD updated to use uv
  • README.md reflects uv-based setup instructions
  • All tests pass after modernization

Examples

Example: Migrate pip to uv

1. Check current setup:
   - ls -la | grep -E "setup.py|requirements.txt|pyproject.toml"
   - cat pyproject.toml

2. Install uv (if not already installed):
   - Via package manager: sudo zypper install uv  # openSUSE
   - Or as user package: pip install --user uv

3. Test uv with current project:
   - uv venv
   - source .venv/bin/activate
   - uv pip install -e ".[dev]"
   - pytest (verify all tests pass)

4. Update CI/CD:
   - Edit .github/workflows/test.yml
   - Replace pip commands with uv

5. Update README:
   - Replace pip instructions with uv

6. Commit: "Migrate from pip to uv for dependency management"

Example: Modernize syntax to Python 3.13

1. Update pyproject.toml:
   [project]
   requires-python = ">=3.13"

2. Run pyupgrade:
   pyupgrade --py313-plus **/*.py

3. Review changes:
   git diff
   # Check: List[X] → list[X], Union[X, Y] → X | Y, etc.

4. Run ruff for additional upgrades:
   ruff check . --select UP --fix

5. Verify type checking still works:
   mypy .
   basedpyright .

6. Run tests:
   pytest

7. Commit: "Modernize syntax to Python 3.13+"

Example: Complete modernization

1. Migrate to uv (see Example 1)

2. Consolidate configuration:
   - Read setup.py and setup.cfg
   - Migrate all config to pyproject.toml
   - Remove setup.py and setup.cfg
   - Verify: uv pip install -e ".[dev]"

3. Modernize syntax (see Example 2)

4. Update deprecated APIs:
   - grep -r "from collections import.*Iterable" .
   - Replace with collections.abc
   - grep -r "datetime.utcnow" .
   - Replace with datetime.now(UTC)

5. Final validation:
   - ruff check . --select UP (clean)
   - pytest (all pass)
   - mypy . && basedpyright . (no errors)

6. Update documentation:
   - README reflects uv usage
   - CONTRIBUTING.md updated

7. Commit: "Modernize codebase: uv, Python 3.13 syntax, pyproject.toml"

Related Skills

  • Prerequisites: py-quality-setup (tool configuration), py-test-quality (safety net before syntax changes)
  • Enforcement: py-git-hooks (enforce modern syntax via ruff UP rules)
  • See also: py-complexity (modernization often enables simplification)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.23%
按下载量换算25

Claude

31.94%
按下载量换算23

Cursor

16.79%
按下载量换算12

Gemini CLI

8.91%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills