bugfix-quick
Aura Frog Quick Bugfix
Priority: MEDIUM - Use for bugs only, not new features
When to Use
USE for: Bug fixes, errors, crashes, things not working
DON'T use for: New features, major refactors, UI changes → use workflow-orchestrator
Quick Fix Process (4 Steps)
1. Understand (5-10 min)
- Read error description
- Locate affected code (Grep/Glob)
- Identify root cause
2. Write Failing Test (10-15 min) - TDD RED
// Test that reproduces the bug
it('should show error when password is empty', () => {
fireEvent.press(getByTestId('login-button'))
expect(getByText('Password is required')).toBeTruthy()
})
Approval: User confirms test FAILS
3. Implement Fix (20-45 min) - TDD GREEN
// Minimal fix
if (!password) {
setError('Password is required')
return
}
Approval: User confirms test PASSES
4. Verify (5-10 min)
- Run full test suite
- Check no regressions
- Confirm bug fixed
Approval: User confirms fix works
Template
## Bug Fix: [Description]
**Issue:** [What's broken]
**Root Cause:** [Why]
**Test Added:** [Code]
**Fix Applied:** [Code]
**Verification:** ✅ Tests pass, no regressions
3 approval gates (vs 9 in full workflow) = Much faster!
Remember: Keep fixes minimal. If complex, switch to workflow-orchestrator.
More from nguyenthienthanh/aura-frog
stitch-design
Generate UI designs using Google Stitch AI with optimized prompts
36angular-expert
Angular 17+ gotchas and decision criteria. Covers signals vs observables, standalone patterns, and common pitfalls Claude gets wrong.
31flutter-expert
Flutter/Dart mobile expert. PROACTIVELY use when working with Flutter, Dart, mobile apps. Triggers: flutter, dart, widget, bloc, riverpod
16seo-expert
SEO and search engine optimization expert. PROACTIVELY use when working with meta tags, structured data, Core Web Vitals, sitemap, robots.txt, canonical URLs. Triggers: SEO, meta tags, schema markup, search ranking
13dev-expert
Development patterns for React, Vue, Laravel, Next.js, React Native - state management, forms, API integration
13react-native-expert
React Native best practices expert. PROACTIVELY use when working with React Native, mobile apps, Expo. Triggers: react-native, expo, mobile, iOS, Android, NativeWind
13