coding-rules
Installation
SKILL.md
Development Rules
Language-Specific References
For language-specific rules, also read:
- TypeScript: references/typescript.md
Basic Principles
✅ Aggressive Refactoring
- Continuously improve code structure and readability
- Make code changes in small, safe steps
- Prioritize maintainability over initial implementation speed
❌ Unused "Just in Case" Code - YAGNI principle
- Don't write code for hypothetical future requirements
- Delete unused functions, variables, and imports immediately
- Keep codebase lean and focused on current needs