Back to list
nguyenthienthanh

bugfix-quick

by nguyenthienthanh

Aura Frog — AI-powered structured development plugin for Claude Code Turn Claude Code into a full-fledged dev platform: Aura Frog brings 24 specialized agents, a 9-phase TDD workflow, built-in quality gates and 70+ commands so your team doesn’t need to manually draft prompts — just call the right command and follow guided instructions.

3🍴 2📅 Jan 22, 2026

SKILL.md


name: bugfix-quick description: "Fast bug fixes with TDD. Lightweight: understand → test → fix → verify." autoInvoke: true priority: medium triggers:

  • "fix bug"
  • "error"
  • "not working"
  • "broken"
  • "crash" allowed-tools: Read, Grep, Glob, Edit, Write, Bash

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.

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon