python-clean-code
Installation
SKILL.md
Clean Python: Complete Reference
Enforces all Clean Code principles from Robert C. Martin's Chapter 17, adapted for Python.
Comments (C1-C5)
- C1: No metadata in comments (use Git)
- C2: Delete obsolete comments immediately
- C3: No redundant comments
- C4: Write comments well if you must
- C5: Never commit commented-out code
Environment (E1-E2)
- E1: One command to build (
pip install -e ".[dev]") - E2: One command to test (
pytest)