From aura-frog
Fixes bugs quickly via lightweight TDD: understand issue with Grep/Glob, write failing test, implement minimal fix, verify full suite. For errors, crashes, broken code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aura-frog:bugfix-quickThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Priority:** MEDIUM - Use for bugs only, not new features
Priority: MEDIUM - Use for bugs only, not new features
USE for: Bug fixes, errors, crashes, things not working
DON'T use for: New features, major refactors, UI changes → use workflow-orchestrator
// 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
// Minimal fix
if (!password) {
setError('Password is required')
return
}
Approval: User confirms test PASSES
Approval: User confirms fix works
## 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.
npx claudepluginhub nguyenthienthanh/aura-frog --plugin aura-frogFixes bugs using test-first loop: add minimal failing reproduction test, apply smallest fix to affected module, verify full test suite and linters. Use for reported bugs needing verified low-impact fixes.
Fixes scoped bugs via lightweight TDD workflow: parses description, applies project standards, reproduces with failing test, implements fix, verifies, escalates complex issues.
Diagnoses and fixes bugs using a test-first workflow: reproduce with a failing test, diagnose root cause, then fix. Activates on bug reports, unexpected behavior, or defect investigations.