name: python-conventions description: Python tooling conventions for this organization. Use when working with Python projects, fixing linting issues, or managing dependencies.
Python Conventions
Package Management
Use uv exclusively:
uv sync # Install dependencies
uv lock # Regenerate lock file
uv add "pkg" # Add dependency
uv run <cmd> # Run in project environment
Lock files: Never manually edit. Delete and regenerate:
rm uv.lock && uv lock
Linting
Tools (in order):
-
ruff check --fix- Linting -
ruff format- Formatting -
mypy- Type checking
Run all: uv run pre-commit run --all-files
Inline Ignores
Always include justification:
from module import thing # noqa: PLC0415 - Lazy import after validation
Environment
Clear inherited environments:
unset VIRTUAL_ENV
uv sync
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
5个月前
tools
tools package distribution
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!