Autoresearch (Autonomous Research Orchestrator)
Runs an entire AI research project autonomously with a two-loop experiment/synthesis engine, from literature survey to paper draft.
AutomationAdvanced★ 11,544⑂ 842AI score 7/10Last updated: Jun 16, 2026
What it does
Turns Claude into a research project manager that orchestrates while domain skills execute.
- Inner loop: pick hypothesis → lock protocol in git → run experiment → sanity check → record metric → learn
- Outer loop: cluster results, explain mechanisms, update
findings.md, and decide DEEPEN / BROADEN / PIVOT / CONCLUDE - Bootstraps a standard workspace (
literature/,experiments/,data/,to_human/,paper/) plus persistent state files - Routes work to domain skills (data processing, fine-tuning, distributed training, evaluation, interpretability, MLOps)
- Keeps running via Claude Code
/loop 20mor an OpenClaw 20-minute cron, shipping HTML/PDF progress reports - Calls
ml-paper-writingat the end for a venue-formatted draft with citation verification
Who it's for
- ML/AI researchers, PhD students and research engineers running many experiment iterations
- People who want an agent to keep making progress overnight
- Teams that struggle to keep hypotheses, negative results and lessons organized
- Overkill if you only need a single one-off task
Examples
- "Investigate what accelerates grokking in small transformers" — survey papers into
literature/, form H1–H3 with predictions, commit protocols before runs, reflect every 5–10 experiments. - Benchmark optimization — track
run_014 → metric 0.847 vs baseline 0.812trajectory JSON, then auto-generate the progress curve plot in ato_human/report. - Concluding a project — once
findings.mdreads like a paper backbone, hand off to the paper-writing skill for a NeurIPS/ICLR LaTeX draft.
⚠️ The skill instructs the agent to act without asking permission and to never idle. Set compute/API budget limits before enabling it.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the 0-autoresearch-skill folder from the GitHub repo Orchestra-Research/AI-Research-SKILLs into my ~/.claude/skills/autoresearch/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Orchestra-Research/AI-Research-SKILLs.git /tmp/ai-research-skills && mkdir -p ~/.claude/skills && cp -r /tmp/ai-research-skills/0-autoresearch-skill ~/.claude/skills/autoresearch⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/Orchestra-Research/AI-Research-SKILLs.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r AI-Research-SKILLs/0-autoresearch-skill ~/.claude/skills/autoresearch - Recommended: also copy companion skills such as
20-ml-paper-writingand21-research-ideation. - Restart Claude Code and say: "Use the autoresearch skill to start this research question…".
- Safety step: the skill sets up a repeating
/loop 20mor cron job. If you don't want that, explicitly tell it "run a single cycle, do not create a continuous loop". - Optional search tooling:
pip install semanticscholar arxiv(Exa MCP if you have it).
View source on GitHub ↗License: MIT