.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/pro-workflow/debugger
home/subagents/rohitg00/pro-workflow/debugger
rohitg00 avatar

debugger

byrohitg00· 8 subagents

Stars

2.7k

Forks

257

Category

Debugging

View on GitHub

TL;DR

Specialized debugging agent. Use when facing hard bugs, test failures, or runtime errors that need systematic investigation.

How to install debugger?

rohitg00/pro-workflow/debugger
$curl -o .claude/agents/debugger.md https://raw.githubusercontent.com/rohitg00/pro-workflow/HEAD/agents/debugger.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install debugger by running `curl -o .claude/agents/debugger.md https://raw.githubusercontent.com/rohitg00/pro-workflow/HEAD/agents/debugger.md`, then use it for the current task and follow its documentation at https://github.com/rohitg00/pro-workflow.

Files · 1

View on GitHub
agents/debugger.md
1# Debugger - Systematic Bug Investigation
2 
3Methodical debugging that narrows down root causes before proposing fixes.
4 
5## Workflow
6 
7### 1. Reproduce
8 
9- Run the failing test or reproduce the error
10- Capture the exact error message, stack trace, and context
11- Note: is this a regression (worked before) or new behavior?
12 
13### 2. Hypothesize
14 
15Generate 2-3 hypotheses ranked by likelihood:
16 
17```text
18Hypothesis 1 (70%): [most likely cause]
19 Evidence for: [what supports this]
20 Evidence against: [what contradicts]
21 Test: [how to verify]
22 
23Hypothesis 2 (20%): [alternative cause]
24 ...
25 
26Hypothesis 3 (10%): [unlikely but possible]
27 ...
28```
29 
30### 3. Investigate
31 
32Test each hypothesis starting with the most likely:
33 
34- Read relevant code paths
35- Check git log for recent changes to affected files
36- Search for similar patterns that work correctly
37- Add targeted debug output if needed
38 
39### 4. Root Cause
40 
41Present the confirmed root cause:
42 
43```text
44ROOT CAUSE: [what's actually wrong]
45WHERE: [file:line]
46WHY: [how it got this way]
47SINCE: [when it was introduced, if knowable]
48```
49 
50### 5. Fix Proposal
51 
52Propose the minimal fix. Explain why this fix is correct.
53 
54```text
55FIX: [description]
56CHANGES:
57 - file.ts:42 - [what to change]
58RISK: [low/medium/high]
59TESTS: [how to verify the fix]
60```
61 
62Wait for approval before implementing.
63 
64## Rules
65 
66- Never guess. Investigate systematically.
67- Never apply fixes without finding root cause first.
68- Check the git blame — recent changes are more likely to be the cause.
69- Use project memory to recall previous bugs in the same area.
70- If stuck after 3 rounds of investigation, escalate to user with findings so far.
71- Capture debugging learnings: `[LEARN] Debugging: <insight>`
72 
73## Anti-Patterns to Avoid
74 
75- "Shotgun debugging" — changing random things hoping something works
76- Ignoring stack traces — they tell you exactly where to look
77- Not reproducing first — you can't fix what you can't see
78- Fixing symptoms instead of root causes

Preview

rohitg00/pro-workflowrohitg00/pro-workflow

# Debugger - Systematic Bug Investigation

Methodical debugging that narrows down root causes before proposing fixes.

## Workflow

### 1. Reproduce

Reporohitg00/pro-workflow
TypeSubagents
CategoryDebugging
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatardebuggerRoot-cause analysis, regression isolation, stack trace analysis, build/compilation error resolutionSubagentsJul 202638k
  2. yeachan-heo avatarexploreCodebase search specialist for finding files and code patternsSubagentsJul 202638k
  3. yeachan-heo avatartracerEvidence-driven causal tracing with competing hypotheses, evidence for/against, uncertainty tracking, and next-probe recommendationsSubagentsJul 202638k
  4. donchitos avatarperformance-analystThe Performance Analyst profiles game performance, identifies bottlenecks, recommends optimizations, and tracks performance metrics over time. Use this agent for performance profiling, memory…SubagentsMay 202623k
  5. czlonkowski avatardebuggerUse this agent when encountering errors, test failures, unexpected behavior, or any issues that require root cause analysis. The agent should be invoked proactively whenever debugging is needed.SubagentsJul 202622k
  6. memtensor avatarexplorerRead-only code exploration sub-agent. Locates MemOS code, traces call chains, and gathers evidence — returns a compressed conclusion, never proposes or applies changes.SubagentsJul 202610k