From claude-code-agents
Fixes bugs using test-first workflow to prevent regressions: reproduces with failing test, applies minimal fix, verifies all tests pass, optional browser QA for UI bugs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-agents:bug-fixThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fix bugs with a test-first approach to prevent regressions. Provide the bug description when invoking.
Fix bugs with a test-first approach to prevent regressions. Provide the bug description when invoking.
Spawn test-writer with the bug description:
Spawn code-fixer with the bug description and test file:
Spawn test-runner:
Spawn browser-qa-agent:
Provide bug details when invoking:
/bug-fix
Bug: Login fails with valid credentials
Steps to reproduce:
1. Go to /login
2. Enter valid email/password
3. Click submit
Expected: Redirect to dashboard
Actual: 500 error
Location: src/api/auth/login.ts
npx claudepluginhub undeadlist/claude-code-agents --plugin claude-code-agentsWrites a failing automated test that reproduces a bug before fixing it, then verifies the fix passes. Use when fixing any bug to prevent silent recurrence.
Step-by-step bug fix workflow: diagnose root cause, implement minimal fix, write regression test. Use when fixing bugs or working on bug report issues.