/resume
Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Use when the user runs /ar:resume or asks to pick up a previously started autoresearch experiment.
One skill from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --skill resume --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/resume
Context preview
The summary Claude sees to decide when to auto-load this skill.
Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Use when the user runs /ar:resume or asks to pick up a previously started autoresearch experiment.
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
SKILL.md
resume.SKILL.md
--- name: "resume" description: "Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Use when the user runs /ar:resume or asks to pick up a previously started autoresearch experiment." command: /ar:resume --- # /ar:resume โ Resume Experiment Resume a paused or context-limited experiment. Reads all history and continues where you left off. ## Usage ``` /ar:resume # List experiments, let user pick /ar:resume engineering/api-speed # Resume specific experiment ``` ## What It Does ### Step 1: List experiments if needed If no experiment specified: ```bash python {skill_path}/scripts/setup_experiment.py --list ``` Show status for each (active/paused/done based on results.tsv age). Let user pick. ### Step 2: Load full context ```bash # Checkout the experiment branch git checkout autoresearch/{domain}/{name} # Read config cat .autoresearch/{domain}/{name}/config.cfg # Read strategy
