Fix
Quick fixes for common issues.
Usage
/fix button not clickable
/fix type error in auth.ts
/fix navigation bug
Workflow
- Identify - Understand the issue
- Locate - Find where it occurs
- Fix - Make minimal change to resolve
- Verify - Test that fix works
- Regress - Check nothing else broke
Examples
Typo Fix
/fix typo in header
Simple Bug Fix
/fix button not responding to clicks
Type Error Fix
/fix TypeScript error in auth.ts
Best Practices
- Make minimal changes
- Don't refactor unrelated code
- Add tests for the fix
- Verify no regressions
- Document why fix was needed
Related
- /implement - For larger fixes
- Systematic Debugging - Complex debugging