Autoresearch harness
Skill radustefandumitru/overdrive/skills/autoresearch-harness
Improve your AI coding agents easily.
npx -y skills add radustefandumitru/overdrive --skill autoresearch-harnessAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Design safe autonomous research/experiment loops inspired by Karpathy's autoresearch. Use for bounded experiment harnesses, optimization loops, overnight research plans, benchmark exploration, or repeated hypothesis testing with explicit budget, rollback, logging, and approval gates.
SKILL.md
3.5 KB, as published. Nobody here has run it
Autoresearch Harness
Use this skill when the user wants an agent to explore a research, benchmark, optimization, or implementation space over repeated iterations.
This is an Overdrive-authored safety wrapper inspired by karpathy/autoresearch. Do not copy upstream code, do not auto-install dependencies, and do not start long-running loops without explicit user approval.
Hard Requirements
Before running or proposing an autonomous loop, define:
- Objective: what the loop optimizes or discovers.
- Editable Surface: exactly which files, configs, prompts, or parameters may change.
- Locked Surface: what must not change.
- Evaluation: command, script, benchmark, metric, or human review gate.
- Budget: max iterations, wall-clock time, API/tool budget, GPU/CPU constraints.
- Rollback: git branch/worktree, checkpoint, patch files, or backup strategy.
- Logging: where attempts, metrics, failures, and decisions are recorded.
- Stop Conditions: target score, no improvement, repeated failure mode, budget reached, or user intervention.
If any of these are missing, ask or propose conservative defaults before continuing.
Safety Rules
- Do not run overnight, high-cost, GPU-heavy, paid API, or large web-crawling loops without explicit confirmation.
- Do not install Python, Node, system packages, browser drivers, CUDA tooling, or model weights automatically.
- Do not write secrets into logs, prompts, configs, or experiment artifacts.
- Do not mutate production databases, real user accounts, auth settings, billing systems, deployment settings, or external services as part of an experiment loop.
- Keep loops fail-open: errors should stop or log and continue within budget, not hide failures.
- Prefer a dry run or one-iteration pilot before a long run.
When To Use Other Skills
- Use
harness-engineeringwhen the main problem is building the test/evaluation harness. - Use
self-improvement-loopswhen the main problem is improving prompts, agents, or workflows over repeated runs. - Use
advanced-evaluationwhen scoring quality is the hard part. - Use
graphifywhen the loop needs codebase relationship mapping first. - Use
planning-firstwhen there is not yet a clear experimental plan.
Recommended Loop Shape
for each iteration:
1. read current state and previous results
2. propose one small change
3. apply only within editable surface
4. run evaluation
5. record metric, diff summary, and failure notes
6. keep, revert, or branch based on acceptance rule
7. stop if budget or stop condition is hit
Output Contract
When asked to design a loop, produce:
- experiment title
- objective and hypothesis
- editable/locked surfaces
- setup commands, clearly marked as user-approved/manual if they install anything
- evaluation command or scoring rubric
- budget and stop conditions
- logging/checkpoint plan
- rollback plan
- first iteration plan
- risk notes
When asked to execute, run a pilot iteration first unless the user explicitly approves the full loop.
Logging Template
## Iteration N
- Change:
- Reason:
- Command:
- Result:
- Metric:
- Kept/Reverted:
- Notes: