claude-framework
Installation
SKILL.md
CLAUDE Framework
Production-ready coding standards for building maintainable, secure, and well-tested software.
Code Quality (C-1 to C-5)
- C-1: Single Responsibility Principle - each function/class does ONE thing
- C-2: DRY (Don't Repeat Yourself) - no code duplication
- C-3: KISS (Keep It Simple) - simplicity over complexity
- C-4: Functions maximum 20 lines (split if longer)
- C-5: Prefer composition over inheritance