coding-standards
Installation
SKILL.md
Coding Standards
Universal coding standards applicable across all projects. This is the shared foundation that all other skills build upon.
Core Principles
1. Readability First
Code is read more than written. Clear variable names, self-documenting code, consistent formatting.
2. KISS — Keep It Simple
Simplest solution that works. No premature optimization. Easy to understand beats clever.
3. DRY — Don't Repeat Yourself
Extract common logic into functions. Share utilities. Avoid copy-paste.
4. YAGNI — You Aren't Gonna Need It
Don't build features before they're needed. Start simple, refactor when required.