Files
dotfiles/dot_claude/commands/fix.md
2025-07-13 22:56:38 +02:00

20 lines
415 B
Markdown

# Fix Bug
Fix a given bug or broken feature described by the user.
## Process
1. Reproduce the issue
2. Write failing test that demonstrates the bug
3. Implement the fix
4. Verify test passes
5. Run full test suite
6. Review code changes
## Best Practices
- Keep changes focused on the specific bug
- Include regression tests
- Update documentation if behavior changes
- Consider edge cases and related issues