python-best-practices
Installation
SKILL.md
Python Best Practices
When This Skill Activates
- Writing any Python code
- Reviewing Python code
- Setting up Python projects
- Questions about Python patterns
Modern Python Patterns (3.11+)
Type Hints Everywhere
# Modern union syntax (3.10+)
def process(value: str | None) -> dict[str, int]:
...