| name | coding-guidelines |
| description | Provides comprehensive coding standards for quality, naming conventions, error handling, concurrency, and memory management. Use when writing new code, reviewing code, fixing bugs, or refactoring existing code. |
Coding Guidelines Skill
When to Use
- Writing new functions or classes
- Code review requests
- Bug fixes requiring code changes
- Refactoring tasks
Quick Reference
Core Standards
Error & Safety
Performance
Core Principles
- Clear naming: Use names that reveal intent
- Single responsibility: One responsibility per function
- Comprehensive error handling: Handle all error paths
- Test coverage: Tests for critical paths