python-patterns
Installation
SKILL.md
Python Patterns
Enforces Python code quality through PEP 8 compliance, complete type hints, Google-style docstrings, and modern Python idioms.
Purpose
Enforce Python code quality through PEP 8 compliance, complete type hints, Google-style docstrings, and modern Python idioms (f-strings, pathlib, dataclasses).
Trigger
Apply when writing or reviewing Python code, or when the user asks about:
- "Python patterns", "PEP 8", "type hints"
- "Python best practices", "Python conventions"
- "寫 Python", "Python 規範", "Python 型別標注"
Do NOT trigger for:
- Runtime errors — use the
debugskill instead - Data science / ML model analysis — that is a separate domain