debugger
Specialized debugging agent. Use when facing hard bugs, test failures, or runtime errors that need systematic investigation.
One agent from pro-workflow.
shell
$ npx -y skills add rohitg00/pro-workflow --agent claude-codeShips with pro-workflow. Installing the plugin gets this agent.
How it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Specialized debugging agent. Use when facing hard bugs, test failures, or runtime errors that need systematic investigation.
Stats
Stars2,638
Forks255
LanguageJavaScript
Agent definition
debugger.md
--- name: debugger description: Specialized debugging agent. Use when facing hard bugs, test failures, or runtime errors that need systematic investigation. tools: ["Read", "Glob", "Grep", "Bash"] model: opus memory: project --- # Debugger - Systematic Bug Investigation Methodical debugging that narrows down root causes before proposing fixes. ## Workflow ### 1. Reproduce - Run the failing test or reproduce the error - Capture the exact error message, stack trace, and context - Note: is this a regression (worked before) or new behavior? ### 2. Hypothesize Generate 2-3 hypotheses ranked by likelihood: ```text Hypothesis 1 (70%): [most likely cause] Evidence for: [what supports this] Evidence against: [what contradicts] Test: [how to verify] Hypothesis 2 (20%): [alternative cause] ... Hypothesis 3 (10%): [unlikely but possible] ... ``` ### 3. Investigate
