autoresearch

autoresearch is a skill for Codex from jscraik/Agent-Skills. It costs 59 tokens per session (1,742 once invoked), scanned A, original, Apache-2.0.

A bounded loop for running automated experiments on code or agent workflows. It records a baseline, tests hypothesis-driven changes, compares measurements, and decides whether to keep, discard, roll back, or block a change.

In plain words
What is it for?
Use it for evidence-based research, metric-driven iteration, and small reversible changes with explicit limits and checks.
Why use it?
It prevents experiments from becoming untracked trial and error and protects against regressions in the chosen measurements.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it for evidence-based research, metric-driven iteration, and small reversible changes with explicit limits and checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jscraik/agent-skills/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 jscraik/Agent-Skills --skill autoresearch
Clone the repo
git clone --depth 1 https://github.com/jscraik/Agent-Skills

Made for: 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/jscraik/agent-skills/autoresearch/github.svg)](https://agentmods.dev/skills/jscraik/agent-skills/autoresearch)
Your own site
<a href="https://agentmods.dev/skills/jscraik/agent-skills/autoresearch"><img src="https://agentmods.dev/badge/skills/jscraik/agent-skills/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/jscraik/agent-skills/autoresearch"><img src="https://agentmods.dev/badge/skills/jscraik/agent-skills/autoresearch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,742 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00059 $0.01742
Opus 5 $0.00030 $0.00871
Sonnet 5 $0.00012 $0.00348
Haiku 4.5 $0.00006 $0.00174

Measured 8d ago against content hash cb3c031759f7, 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 8d 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.

Skills/agent-ops/autoresearch/SKILL.md · 137 lines

How it starts

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

Autoresearch

Philosophy

Bounded evidence loop: baseline, hypothesize, patch, score, decide, record. Humans set goal, metric, scope, and stop condition; the agent runs reversible hypotheses inside those bounds.

When To Use

  • The user explicitly names $autoresearch.
  • The user asks to set up, run, refine, or audit an Autoresearch-style loop.
  • The work has target path, editable boundary, metric, verifier, and stop condition.
  • The user asks whether a tiny delta, protected regression, or evaluator/data/cache edit is safe to keep.

Avoid

  • Generic feature work, keeping unverified experiment changes, or editing fixed harness/evaluation surfaces unless the user changes the benchmark contract.

Execution Boundaries

Owns the experiment contract, ledger, and keep/discard/block recommendation; parent thread owns final decision. Fixed surfaces are benchmark harness, evaluator, data prep, datasets, tokenizer files, and guard commands. Block on unclear metric, boundary, runtime, guard semantics, network/dependency/destructive approvals, contract edits, or unbounded runs.

Inputs

Target path, boundaries, run tag, metric direction, verify/guard commands, stop condition, evidence path, train/selection/test split policy, and optional evaluator contract or min_delta policy.

Deliverables

Ledger plus closeout: hypotheses, patches, commands, scores, baseline, best delta, guard status, changed files, blockers, and schema_version when schema-bound. For skill optimization contracts, also produce best_skill.md, rejected-edits.jsonl, and promotion.json before recommending a canonical edit.

Discovery Interview

  • Ask one round at a time.
  • Use a plain-language question.
  • Explain why this matters for the current skill decision.
  • Avoid dumping the whole interview plan at once.
  • Read references/discovery-interview.md when the request is underspecified.

Workflow

  1. Confirm target, instructions, boundaries, run tag, stop condition, and evidence paths.
  2. Require goal, scope, metric direction, verify command, and stop condition.
  3. For jscraik/autoresearch, read README.md, program.md, prepare.py, and train.py; normally edit only train.py.
  4. Define parser contract, guard command, held-out checks, noise_runs, aggregation, min_delta, and confirmation rule.
  5. Baseline first. Never keep an experiment before baseline evidence exists.
  6. Before each iteration, re-read ledger, logs, git status, commits, and last kept diff.
  7. Run one reversible hypothesis, Verify, optional Guard, then keep/discard/crash/block with evidence and update the ledger.
  8. If attempts plateau, pivot using ledger and git history; at closeout, compare against the original rubric or metric.
  9. When references/contract.yaml declares optimization.enabled, treat that block as the authority for split visibility, edit budget, protected paths, anti-cheat checks, and promotion. Write candidates under the evidence root; do not overwrite canonical SKILL.md until the promotion contract passes review.

Read the full file on GitHub · 137 lines

Files

What ships with it

6 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. 8d ago First seen · 137 lines · 59 tokens per session scan A cb3c031759f7

Subscribe to this mod's changes

autoresearch is a skill published in the GitHub repository jscraik/Agent-Skills (8 stars, last pushed 11d ago), licensed Apache-2.0. It adds 59 tokens to every session and 1,742 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-09-03.