autoresearch

autoresearch is a skill for Claude Code, Codex from TTAWDTT/elegant-researcher-skill. It costs 98 tokens per session (5,724 once invoked), scanned A, a copy of autoresearch, MIT.

A system for running an AI research project from the initial question through experiments, analysis, and a published paper. It uses a fast experiment loop and a second loop that reviews results and guides the next direction.

In plain words
What is it for?
Use it to survey literature, plan and run experiments, identify patterns, and prepare research outputs.
Why use it?
It organizes long research projects and keeps experiments, findings, and decisions moving without requiring constant user input.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions Claude Code; built for openclaw.

Good fit Use it to survey literature, plan and run experiments, identify patterns, and prepare research outputs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ttawdtt/elegant-researcher-skill/autoresearch
Install

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.

Any agent
npx skills add TTAWDTT/elegant-researcher-skill --skill autoresearch
Clone the repo
git clone --depth 1 https://github.com/TTAWDTT/elegant-researcher-skill

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for autoresearch

README.md
[![agentmods](https://agentmods.dev/badge/skills/ttawdtt/elegant-researcher-skill/autoresearch/github.svg)](https://agentmods.dev/skills/ttawdtt/elegant-researcher-skill/autoresearch)
Your own site
<a href="https://agentmods.dev/skills/ttawdtt/elegant-researcher-skill/autoresearch"><img src="https://agentmods.dev/badge/skills/ttawdtt/elegant-researcher-skill/autoresearch/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for autoresearch

Your own site · 80×15
<a href="https://agentmods.dev/skills/ttawdtt/elegant-researcher-skill/autoresearch"><img src="https://agentmods.dev/badge/skills/ttawdtt/elegant-researcher-skill/autoresearch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,724 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 89% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00098 $0.05724
Opus 5 $0.00049 $0.02862
Sonnet 5 $0.00020 $0.01145
Haiku 4.5 $0.00010 $0.00572

Measured 12d ago against content hash cf01b94f2737, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

autoresearch 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 12d 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.

Origin

This is a copy

89% identical to autoresearch — 100 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.

skills/autoresearch/SKILL.md · 432 lines

How it starts

The opening of the file, as written. The whole thing — 432 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Autoresearch

Autonomous research orchestration for AI coding agents. You manage the full research lifecycle — from literature survey to published paper — by maintaining structured state, running a two-loop experiment-synthesis cycle, and routing to domain-specific skills for execution.

You are a research project manager, not a domain expert. You orchestrate; the domain skills execute.

This runs fully autonomously. Do not ask the user for permission or confirmation — use your best judgment and keep moving. Show the human your progress frequently through research presentations (HTML/PDF) so they can see what you're doing and redirect if needed. The human is asleep or busy; your job is to make as much research progress as possible on your own.

Getting Started

Users arrive in different states. Determine which and proceed:

User State What to Do
Vague idea ("I want to explore X") Brief discussion to clarify, then bootstrap
Clear research question Bootstrap directly
Existing plan or proposal Review plan, set up workspace, enter loops
Resuming (research-state.yaml exists) Read state, continue from where you left off

If things are clear, don't over-discuss — proceed to full autoresearch. Most users want you to just start researching.

Step 0 — before anything else: Set up the agent continuity loop. See Agent Continuity. This is MANDATORY. Without it, the research stops after one cycle.

Initialize Workspace

Create this structure at the project root:

{project}/
├── research-state.yaml       # Central state tracking
├── research-log.md           # Decision timeline
├── findings.md               # Evolving narrative synthesis
├── hypothesis-tree.md        # All hypotheses, their status, and evolution
├── HANDOFF.md                # Instructions for user to run experiments (when ready)
├── literature/               # Papers, survey notes, gap analysis
├── src/                      # Reusable code (utils, plotting, shared modules)
├── data/                     # Raw result data (CSVs, JSONs, checkpoints)
├── experiments/              # Per-hypothesis work
│   └── {hypothesis-slug}/
│       ├── protocol.md       # What, why, and prediction
│       ├── code/             # Experiment-specific code (runnable by user)
│       ├── results/          # User places raw outputs here
│       │   ├── micro/        # Agent-generated micro-validation results
│       │   └── README.md     # Instructions: what to collect, format, where
│       ├── figures/
│       │   └── micro/        # Agent-generated preliminary figures
│       ├── review.md         # Post-experiment critical review
│       └── analysis.md       # What we learned (filled after results arrive)
├── to_human/                 # Progress presentations and reports for human review
└── paper/                    # Final paper (via ml-paper-writing)

Read the full file on GitHub · 432 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 12d ago First seen · 432 lines · 98 tokens per session scan A cf01b94f2737

Subscribe to this mod's changes

autoresearch is a skill published in the GitHub repository TTAWDTT/elegant-researcher-skill (5 stars, last pushed 3mo ago), licensed MIT. It adds 98 tokens to every session and 5,724 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to autoresearch, differing in 100 lines, and is treated as a copy.

Related

Other skills, from other repositories

autoresearch

Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes results, identifies patterns, and steers research direction. Routes to domain-specific skills for execution, supports…

Orchestra-Research/AI-Research-SKILLs · 98 tokens

autoresearch

Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes results, identifies patterns, and steers research direction. Routes to domain-specific skills for execution, supports…

brycewang-stanford/Auto-Empirical-Research-Skills · 98 tokens

autoresearch

Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes results, identifies patterns, and steers research direction. Routes to domain-specific skills for execution, supports…

OpenRaiser/NanoResearch · 98 tokens

research-0-autoresearch-skill

Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes re...

GrayCodeAI/starling · 44 tokens

quantum-qiskit

Reference qiskit 2.x patterns for variational quantum machine learning. Covers data-encoding feature maps, variational quantum classifier (VQC) training, variational quantum eigensolver (VQE) for chemistry, matrix-product-state circuits, and noise model integration. Use when writing Python code that imports qiskit…

aiming-lab/AutoResearchClaw · 102 tokens

flux-analyzer

Analyse FBA flux distributions to extract biological insights. Covers gene essentiality, phenotypic phase planes, flux sampling, pathway-level aggregation, secretion product prediction, and production of publication- quality figures.

aiming-lab/AutoResearchClaw · 44 tokens