autoresearch-fleet

Automate code optimization by committing metric improvements and reverting regressions.

1|Updated Apr 16, 2026
One-click install
npx skills add https://github.com/quickcall-dev/skills --skill autoresearch-fleet
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: autoresearch-fleet
Source: https://github.com/quickcall-dev/skills/tree/main/skills/autoresearch-fleet
Command: npx skills add https://github.com/quickcall-dev/skills --skill autoresearch-fleet

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

It solves the problem of exploring a large optimization/search space without manual babysitting by autonomously iterating on code changes, evaluating them with a fixed harness, and keeping only improvements.

Core Features & Use Cases

  • Karpathy-style autonomous loop: iteratively edits a single mutable file, runs a deterministic evaluation harness, and commits or reverts changes based on results.
  • Plateau-triggered web search: detects consecutive discards/crashes and switches to a web-search-augmented prompt to break through knowledge ceilings.
  • Budgeted, provider-flexible orchestration: runs with claude, codex, or pi providers using per-iteration budget caps and stop conditions.
  • Git as state machine: improvement advances history while regressions reset hard, keeping a clean experimental trail.

Quick Start

Prepare a fleet root directory with fleet.json and a NEVER STOP program.md, then run: launch.sh <fleet-root> to start the autonomous overnight optimization loop.

Frequently Asked Questions about autoresearch-fleet

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code optimization with a deterministic eval harness?

You can automate code optimization by running an autonomous loop that iteratively edits a file, evaluates it with a fixed harness, and commits metric improvements while reverting regressions. This requires a git-initialized workdir and a configuration file defining the evaluation command.

Can I use different model providers for autonomous research loops?

Yes, autonomous research loops support provider-flexible orchestration with claude, codex, or pi providers. The orchestrator manages stop conditions under per-iteration budget caps, allowing long-running experiments across different model providers.

What is plateau-triggered web search in autonomous code refinement?

Plateau-triggered web search is a mechanism that detects consecutive discarded or crashed iterations and switches to a web-search-augmented prompt. This breaks through knowledge ceilings when the autonomous loop stalls during code optimization.

How do I set up a workdir for autonomous benchmarking and iteration?

To set up autonomous benchmarking, prepare a fleet root directory containing a configuration file with your eval command, metric extraction, and search settings, alongside a program instruction file. You need a git-initialized workdir to maintain the experimental trail.

When should I use git as a state machine for algorithm refactoring?

Use git as a state machine for algorithm refactoring when you need a clean experimental trail during continual exploration. Improvements advance history while regressions trigger a hard reset, ensuring only validated metric improvements are kept in the codebase.

What are the limitations of autonomous software optimization loops?

Autonomous optimization loops are limited to scenarios with deterministic benchmarks and fast testable metrics, such as latency or loss tuning. They require defined budget caps and stop conditions, and depend on a fixed evaluation harness to validate metric improvements.