clean-general
Installation
SKILL.md
General Clean Code Principles
Critical Rules
G1: No Duplicated Knowledge
Every piece of knowledge has one authoritative representation.
# Bad - duplication
tax_rate = 0.0825
ca_total = subtotal * 1.0825
ny_total = subtotal * 1.07
# Good - single source of truth
TAX_RATES = {"CA": 0.0825, "NY": 0.07}