How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow-commands:bugThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Workflow for fixing bugs with proper investigation and root cause tracking.
Workflow for fixing bugs with proper investigation and root cause tracking.
Use when: Something is broken and needs fixing.
Announce: "I'm investigating and fixing this bug."
"<bug description>" [--priority <0-4>] [--blocks <task-id>]
--blocks to link to a feature this bug is blocking# Create beads bug
bd create "Bug: <description>" -t bug -p <priority>
# Log deciduous goal
deciduous add goal "Fix: <description>" -c 70 # -c takes integer 0-100, NOT float
# If blocking another task
bd dep add <blocker-id> <bug-id>
Note the bug ID.
CRITICAL: Find root cause before fixing.
# Log investigation findings
bd comment <bug-id> "INVESTIGATION: <what you found>"
Use these investigation techniques:
Log root cause when found:
deciduous add observation "Root cause: <detailed explanation>"
bd comment <bug-id> "ROOT CAUSE: <explanation>"
Implement the fix. Log what you're doing:
deciduous add action "Fixing: <approach>"
If you make design decisions about the fix:
deciduous add decision "Chose <fix approach> because <rationale>" -c 80
CRITICAL: Verify the fix before closing.
# Run relevant tests
# Add regression test if possible
# Confirm bug is actually fixed
bd comment <bug-id> "VERIFIED: <how you verified>"
# Update status
bd update <bug-id> --status done
# Log outcome
deciduous add outcome "Fixed: <summary of fix>"
# Close bug
bd close <bug-id> --reason "Fixed and verified"
git add .
git commit -m "fix: <description>"
Handoff:
Bug fixed! Next steps:
- Create PR: `gh pr create`
- Or continue with blocked work
When you discover a bug while working on something else:
/bug "Found: <description>" --blocks <current-task-id>
This:
Simple bug:
/bug "Login button doesn't respond on mobile"
High priority:
/bug "Users can't checkout - payment fails" --priority 1
Bug blocking feature:
/bug "Auth middleware crashes on empty token" --blocks beads-a1b2
npx claudepluginhub kylestratis/kyle-claude-plugins --plugin workflow-commandsCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.