clean-typescript-general
Installation
SKILL.md
General Clean Code Principles
Critical Rules
G1: No Duplicated Knowledge
Every piece of knowledge has one authoritative representation.
// Bad - duplication
const taxRate = 0.0825;
const caTotal = subtotal * 1.0825;
const nyTotal = subtotal * 1.07;