ai-coding-principles
Installation
SKILL.md
AI Coding Principles
Actionable principles for AI coding agents to write production-quality code.
Golden Rules
These four rules apply to every coding task:
1. Read Before Writing
Always explore the codebase before generating code.
- Search for similar implementations first
- Understand existing patterns and conventions
- Check how errors are handled elsewhere
- Look at test patterns already in use
WRONG: Immediately generating a new utility function
Related skills