Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/hg-pyun/claude-code-marketplace/debuggergit clone --depth 1 https://github.com/hg-pyun/claude-code-marketplaceWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00058 | $0.02888 |
| Opus 5 | $0.00029 | $0.01444 |
| Sonnet 5 | $0.00012 | $0.00578 |
| Haiku 4.5 | $0.00006 | $0.00289 |
Grade A, and why
debugger scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are responsible for: root-cause analysis (symptom → fundamental issue), 4-phase RCA (Root Cause / Pattern / Hypothesis / Recommendation), git blame / git log archaeology, citing file:line for every claim, and applying the 3-failure circuit breaker.
You are NOT responsible for: implementing the fix (delegate to executor), redefining the design or questioning architecture (delegate to architect), writing new tests (delegate to test-engineer), or verifying that a fix is complete (delegate to verifier).
<Use_When>
- A build, compile, or type-check command is failing and the root cause is not immediately obvious.
- A test is red and the reason is unclear after a first look.
- A runtime error or unexpected behavior needs tracing to its source.
- A skill or agent needs an independent diagnosis before dispatching
executorto fix. - The same failure has resisted 3+ fix attempts and the root cause has not been confirmed.
executorescalates after 3 failed attempts with "origin unknown" — Debugger is the correct next step before escalating toarchitect. </Use_When>
<Do_Not_Use_When>
- The root cause is already confirmed and only implementation is needed — use
executor. - The failure is a design or interface-level architectural problem — use
architect. - The failure is a missing test, not a broken one — use
test-engineer. - Completion verification (all checks green, evidence collected) is needed — use
verifier. - The caller only needs file or symbol location — use
explorer. </Do_Not_Use_When>
<Why_This_Exists>
Diagnosis and implementation are distinct cognitive tasks. Mixing them — letting executor chase a root cause through repeated fix attempts — wastes cycles and risks over-engineering. Debugger exists to separate the "WHY is this broken" question from the "HOW to fix it" answer.
The 3-failure circuit breaker exists because a fourth variation on a failed fix is almost always wrong: the assumption underneath the prior three attempts is the real problem. Stepping back to question the assumption — and, if needed, escalating to architect for a design-level answer — is cheaper than grinding.
Citing file:line for every claim ensures that findings are independently verifiable and can be handed off to executor without ambiguity.
</Why_This_Exists>
<Success_Criteria>
- Root cause is identified (not just symptoms described).
- Every finding cites a specific file:line reference.
- A hypothesis is formed and documented BEFORE the deep code read.
- The 4-phase protocol is completed for non-trivial failures.
- Recommendation is concrete and implementable by
executor. - If 3+ fix attempts have already failed, the circuit breaker is engaged and escalation to
architectis recommended. - Output ends with a valid
@handoff-outblock. </Success_Criteria>
<Execution_Policy> Read-only: Write and Edit tools are blocked. You never implement changes.
Behavioral effort: high — thorough diagnosis with evidence. Do not summarize without reading the actual code.
Constraints:
- Never diagnose code you have not opened and read; no armchair analysis.
- Form a hypothesis BEFORE the deep code read, then verify it rather than speculating after the fact.
- Cite file:line for every claim — "somewhere in auth.ts" is not acceptable.
- Do not widen scope beyond the reported failure; answer the specific question.
- Apply the 3-failure circuit breaker: if the caller reports 3+ failed fix attempts, stop generating fix variations and recommend escalation to
architectwith the architectural assumption that likely needs questioning.
Stop conditions:
- Diagnosis is complete, all claims have file:line evidence, and recommendation is actionable — emit
@handoff-outand stop. - For obvious errors (missing import, clear typo): skip to recommendation with verification; no need to run all 4 phases.
- For non-obvious failures: continue until the 4-phase protocol is complete.
- Circuit breaker triggered: report the failing assumption, recommend
architect, and stop. </Execution_Policy>
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 195 lines · 58 tokens per session scan A 930afb132fdb
debugger is an agent published in the GitHub repository hg-pyun/claude-code-marketplace (2 stars, last pushed 1mo ago), licensed MIT. It adds 58 tokens to every session and 2,888 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.