autoresearch is an agent workflow that repeatedly changes a project, verifies a measurable result, keeps or discards the change, and continues iterating toward a goal. It is for autonomous improvement tasks in Claude Code, OpenCode, and OpenAI Codex across domains with mechanical success measures. The catalogue contains its commands, hooks, skills, plugin, agent, and instruction.
Borrowing it
Nothing to install: this file belongs to uditgoenka/autoresearch. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/uditgoenka/autoresearch/master/.opencode/commands/autoresearch_debug.mdgit clone --depth 1 https://github.com/uditgoenka/autoresearchWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/uditgoenka/autoresearch/autoresearch_debug)<a href="https://agentmods.dev/commands/uditgoenka/autoresearch/autoresearch_debug"><img src="https://agentmods.dev/badge/commands/uditgoenka/autoresearch/autoresearch_debug.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00020 | $0.01019 |
| Opus 5 | $0.00010 | $0.00509 |
| Sonnet 5 | $0.00004 | $0.00204 |
| Haiku 4.5 | $0.00002 | $0.00102 |
Grade A, and why
autoresearch_debug 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 6d 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.
This is a copy
97% identical to autoresearch:debug — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EXECUTE IMMEDIATELY.
Parse Arguments
Extract from $ARGUMENTS:
Scope:or--scope— file globs to investigateSymptom:or--symptom— error message or behavior descriptionIterations:or--iterations— default 15. "unlimited" for unbounded.--fix— shorthand for--chain fix--severity— filter: critical, high, medium, low--technique— force specific technique--evals,--evals-interval N,--chain
Setup (if required context missing)
If Scope and Symptom both missing:
- Auto-scan: run tests, lint, typecheck to detect existing failures
- question (single batch): Q1 (Issue): "What's the problem?" — hunt all bugs, specific error, failing tests, CI failure, performance Q2 (Scope): "Which files?" — suggested globs + entire codebase Q3 (Depth): "How deep?" — quick (5), standard (15), deep (30+), unlimited Q4 (After): "When bugs found?" — report only, find and fix (--chain fix), chain to other, ask each time If all provided → skip.
Investigation Techniques
| Technique | When to Use |
|---|---|
| Binary search | Know when it worked, find when it broke |
| Differential | Compare working vs broken state |
| Minimal reproduction | Simplify to smallest failing case |
| Trace | Follow execution path through code |
| Pattern search | Grep for known anti-patterns |
| Working backwards | Start from error, trace to root cause |
Establish Baseline (before loop)
- Auto-scan for failures if no symptom provided
- Create output directory:
autoresearch/debug-{YYMMDD}-{HHMM}/ - TSV header:
# metric_direction: higher_is_better\niteration\ttimestamp\thypothesis\tstatus\ttechnique\tevidence\tfile_line - Metric = cumulative confirmed findings count
Iteration Loop
Phase 1: Review Context
- Read results TSV (past findings)
- Assess: what's been tested, what vectors remain
- If no hypotheses left → early stop
Phase 2: Hypothesize
- Form ONE specific, falsifiable hypothesis
- Format: "I hypothesize that {X} because {evidence}. Test by {Y}."
- Hypothesis must be testable and different from all previous
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.
- 6d ago First seen · 98 lines · 20 tokens per session scan A a0a82fb06ac0
autoresearch_debug is a command published in the GitHub repository uditgoenka/autoresearch (6,184 stars, last pushed 24d ago), licensed MIT. It adds 20 tokens to every session and 1,019 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to autoresearch:debug, differing in 4 lines, and is treated as a copy.
Other commands, from other repositories
qa-changes
This skill should be used when the user asks to "QA a pull request", "test PR changes", "verify a PR works", "functionally test changes", or when an automated workflow triggers QA validation of code changes. Provides a structured methodology for setting up the environment, exercising changed behavior, and reporting…
fix
Universal debugging and fix application with semantic code analysis.
http-service
Build, review or debug a Bun HTTP service. Loads the http-service skill, then works the task through its workflow.
debug
Systematic 9-step debugging framework. Generate 20+ hypotheses, rank by likelihood, implement most probable fix.
code-semantic-search
Semantic code search using vector embeddings and hybrid search.
css-debug
Debug CSS issues including specificity conflicts, cascade problems, and layout bugs.