원클릭으로
python-development
Python-specific patterns: uv/poetry virtual environments, python -m imports, version pinning, pip restrictions on macOS.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Python-specific patterns: uv/poetry virtual environments, python -m imports, version pinning, pip restrictions on macOS.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review recently changed files for code reuse, quality, and efficiency issues, then fix them. Use when implementation is already complete and you want a final cleanup pass that mirrors Claude Code's `/simplify` behavior as closely as Codex can, without overriding Claude's native `/simplify`.
Supabase migration safety, local testing workflow, grant requirements, fallback observability, and health endpoint patterns.
| name | Python Development |
| description | Python-specific patterns: uv/poetry virtual environments, python -m imports, version pinning, pip restrictions on macOS. |
Wrong -- bare python3 has no project dependencies:
python3 scripts/run_analysis.py
# ModuleNotFoundError: No module named 'pandas'
Right -- use the project's venv runner:
uv run python scripts/run_analysis.py
# Or: poetry run python scripts/run_analysis.py
# Or: pipenv run python scripts/run_analysis.py
Wrong -- direct execution breaks relative imports:
python scripts/etl/transform.py
# ModuleNotFoundError: No module named 'scripts.etl.utils'
Right -- use -m for scripts with package imports:
python -m scripts.etl.transform
Wrong -- uv auto-selects newest Python, packages lack wheels:
uv sync
# error: No wheel found for numpy on Python 3.14
Right -- specify a stable Python version:
# Check project requirements:
cat .python-version
# Pin the version:
uv sync --python 3.13
Wrong -- system pip blocked by PEP 668 on macOS:
pip3 install httpie
# error: externally-managed-environment
Right -- use brew for CLI tools, pipx for Python apps:
brew install httpie
# Or for Python-specific apps:
pipx install httpie