Skip to content
Maleick edited this page Apr 13, 2026 · 2 revisions

Autoresearch Wiki

Autonomous iteration engine for Claude Code. v2.2.0

Navigation

Page Contents
Installation Install, update, auto-update, requirements
Commands All 9 commands with flags and examples
Configuration Parameters, flags, stop conditions, metric patterns
Safety Invariants, branch isolation, side effects, what to avoid
Contributing Dev setup, version-bump procedure, PR checklist

Quick Start

# Install
claude plugin marketplace add Maleick/claude-autoresearch && claude plugin install autoresearch@Maleick-claude-autoresearch

# Run the wizard
/autoresearch:plan

# Or run directly
/autoresearch Goal: "Reduce bundle size" Scope: "src/**/*.ts" Metric: "bundle size KB" Verify: "npm run build 2>&1 | grep size | awk '{print \$3}'" Direction: minimize

Core Loop

Modify → Verify → Keep/Discard → Repeat

autoresearch makes one small, atomic change, runs your verification command, keeps the change if the metric improved (strict improvement only), resets if it didn't, and repeats. Every kept change is a git commit on an isolated branch.

Clone this wiki locally