Code Standards Enforcer Skill
Auto-activated when user asks about code review, quality standards, or "code review checklist".
Purpose
Ensures code quality through comprehensive checklists, standards enforcement, and review guidance.
Activation Triggers
- •"Code review"
- •"Quality standards"
- •"Code review checklist"
- •"What should I check in code review?"
Output
Provides:
- •40+ item code review checklist
- •Quality standards
- •Best practices
- •Common issues to catch
- •Review process guidance
Connected To
- •Section 9: Execution Strategy
- •Section 5: Technical Execution Workflow (PART 3)
- •Coding standards documentation
Code Review Checklist
When activated, provides comprehensive checklist:
Functionality
- • Code works as intended
- • Edge cases handled
- • Error handling appropriate
- • Input validation present
Code Quality
- • Follows coding standards
- • No code duplication
- • Functions are focused (single responsibility)
- • Variable names are clear
- • Comments explain "why" not "what"
Testing
- • Unit tests included
- • Tests cover edge cases
- • Test coverage maintained
- • Integration tests updated
Security
- • No hardcoded secrets
- • Input sanitized
- • SQL injection prevented
- • XSS vulnerabilities addressed
- • Authentication/authorization correct
Performance
- • No N+1 queries
- • Database indexes used
- • Caching implemented where appropriate
- • No memory leaks
Documentation
- • README updated if needed
- • API docs updated
- • Code comments added for complex logic
Usage
Ask: "What should I check in this code review?"
The skill will:
- •Provide relevant checklist items
- •Explain each item
- •Suggest improvements
- •Link to standards documentation