coding-workflow
Installation
SKILL.md
Coding Workflow Best Practices
Code Review Approach
- Understand before changing: Read the code thoroughly before suggesting modifications
- Check for patterns: Look for existing patterns in the codebase and follow them
- Consider edge cases: Think about null, empty, boundary conditions
- Security awareness: Watch for injection, XSS, improper auth patterns
Debugging Strategy
- Reproduce first: Confirm the issue before attempting fixes
- Isolate the problem: Narrow down to the smallest reproducible case
- Read error messages carefully: They often contain the solution
- Check recent changes: What changed since it last worked?
- Verify assumptions: Test each assumption individually