npx claudepluginhub elmmly/genie-team --plugin genie/bugfixOrchestrates bugfix workflow: analyzes error, implements fix via sub-agents, iteratively validates quality up to 3 rounds until >=90%, outputs production-ready fix and report.
/bugfixExecutes end-to-end bug fix workflow: root cause analysis via 5 Whys, user review of findings, then TDD regression test + fix delivery.
/bugfixFixes frontend bugs via multi-layer detection (React/Vue/Angular), iterative sub-agent repairs with quality verification loops until 90% score or 3 max iterations.
/bugfixDocuments bug fixes via interactive interview on problem reproduction, root cause analysis, fix approach, and regression testing strategy.
/bugfixFixes bugs using severity-based workflows: quick for simple issues, full investigation for complex bugs, hotfix for production emergencies. Supports interactive mode.
/bugfixTDD-driven bugfix workflow: tester writes failing test (RED) → developer fixes (GREEN) → developer refactors (REFACTOR) → reviewer validates. Accepts issue number, description, or both. Auto-creates PR unless --no-pr flag is passed.
Quick bug fix workflow: light shape → deliver → discern.
issue - Bug description or issue reference (required)--urgent - Skip shaping, go direct to fix--test-only - Just write regression test/bugfix "login fails for SSO users"
│
├─→ Light Shaping (abbreviated)
│ └─→ Problem statement
│ └─→ Acceptance criteria
│ └─→ Scope boundaries
│
├─→ /deliver (bug fix mode)
│ └─→ Write regression test first
│ └─→ Fix the bug
│ └─→ Verify test passes
│
└─→ /discern (abbreviated)
└─→ Regression test exists?
└─→ Bug actually fixed?
└─→ No new issues introduced?
# Bug Fix: [Issue]
**Problem:** [What's broken]
**Expected:** [Correct behavior]
**Actual:** [Current behavior]
**Scope:** [What we will/won't touch]
**Acceptance:**
- [ ] Regression test written
- [ ] Bug fixed
- [ ] All tests pass
/bugfix "login fails for SSO users"
> Bug fix workflow started
>
> Light shape:
> - Problem: SSO users get 401 on login
> - Expected: Successful authentication
> - Scope: SSO auth flow only
>
> Proceeding to fix...
>
> [Crafter writes regression test]
> Test: "SSO user login succeeds" - FAILING (expected)
>
> [Crafter implements fix]
> Test: "SSO user login succeeds" - PASSING
>
> [Critic quick review]
> Verdict: APPROVED
> Regression test exists, bug fixed, no side effects
/bugfix --urgent "production 500 error on checkout"
> URGENT mode - skipping shaping
> [Crafter investigating and fixing]
--urgent/feature workflow