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}
Installs
7
GitHub Stars
1
First Seen
May 21, 2026
clean-general — gosukiwi/clean-code-react