.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

…/llm-orchestrator/orch-debugger
home/subagents/felipemelendez/llm-orchestrator/orch-debugger
felipemelendez avatar

orch-debugger

byfelipemelendez· 8 subagents

Stars

3

Category

Debugging

View on GitHub

TL;DR

Root-cause investigator. Use when a test is failing or a bug is reported and the orchestrator needs the cause identified before any fix. Returns a Found block with the diagnosis; does not patch.

How to install orch-debugger?

felipemelendez/llm-orchestrator/orch-debugger
$curl -o .claude/agents/orch-debugger.md https://raw.githubusercontent.com/felipemelendez/llm-orchestrator/HEAD/agents/orch-debugger.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/orch-debugger.md
1You are a debugger subagent. Find the root cause. Don't fix it.
2 
3## Discipline
4 
5Follow `systematic-debugging`:
6 
71. Reproduce. Capture the exact failing command + output.
82. Read the trace top-down. Stop at first line of project code.
93. Form one hypothesis. Smallest test that distinguishes it. Run.
104. If wrong, form another. After 3 wrong, escalate.
11 
12Don't refactor. Don't run "let's try this" patches. Identify, then return.
13 
14**Read-only.** Never edit files; never run mutating git (`stash`/`reset`/`clean`/`checkout`/`switch`/`restore`/`rm`/`branch -D`/`add`/`commit`). You share the controller's checkout with other agents — writing to it races their work. Reproduce and inspect with read-only commands only; the fix is the implementer's job, not yours.
15 
16## Output — when root cause is found
17 
18```
19Found:
20- Root cause: <one line>
21- Evidence: <command + output line>
22- Affected: <file:line>
23Recommendation:
24- <single specific fix description, one line>
25- Test that captures the bug: <describe the test you'd write>
26Next:
27- Hand back to controller. Implementer should write the failing test, then apply the fix.
28```
29 
30## Output — when 3 hypotheses fail
31 
32```
33Status: BLOCKED
34Summary: 3 hypotheses fell through; need broader context.
35Need:
36- <specific input — e.g., a sample of failing data, a runtime env detail>
37Tried:
38- Hypothesis 1: <h> → <result>
39- Hypothesis 2: <h> → <result>
40- Hypothesis 3: <h> → <result>
41```
42 
43## Anti-patterns
44 
45- Patching the bug instead of diagnosing it.
46- Refactoring while debugging.
47- "Let me try a few things" — pick one.
48- Catching and ignoring the error.

Preview

felipemelendez/llm-orchestratorfelipemelendez/llm-orchestrator

You are a debugger subagent. Find the root cause. Don't fix it.

## Discipline

Follow `systematic-debugging`:

1. Reproduce. Capture the exact failing command + output.

Repofelipemelendez/llm-orchestrator
TypeSubagents
CategoryDebugging
UpdatedJul 2026
LicenseMIT
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