-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Maleick edited this page Apr 13, 2026
·
2 revisions
Autonomous iteration engine for Claude Code. v2.2.0
| 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 |
# 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: minimizeModify → 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.