Agent skill

resume

Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill resume-alirezarezvani-claude-skills --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/ai-ml/resume-alirezarezvani-claude-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /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 cat .autoresearch/{domain}/{name}/program.md # Read full results history cat .autoresearch/{domain}/{name}/results.tsv # Read recent git log for the branch git log --oneline -20 ``` ### Step 3: Report current state Summarize for the user: ``` Resuming: engineering/api-speed Target: src/api/search.py Metric: p50_ms (lower is better) Experiments: 23 total — 8 kept, 12 discarded, 3 crashed Best: 185ms (-42% from baseline of 320ms) Last experiment: "added response caching" → KEEP (185ms) Recent patterns: - Caching changes

What's inside
Steps it walks through
  1. Usage
  2. What It Does
  3. Step 1: List experiments if needed
  4. Step 2: Load full context
  5. Step 3: Report current state
  6. Step 4: Ask next action
Ships with 1 file
  • metadata.json
Commands it runs
python {skill_path}/scripts/setup_experiment.py --list
Checkout the experiment branch
git checkout autoresearch/{domain}/{name}
Read config
cat .autoresearch/{domain}/{name}/config.cfg
Read strategy
cat .autoresearch/{domain}/{name}/program.md
Read full results history
cat .autoresearch/{domain}/{name}/results.tsv
Read recent git log for the branch
More from claude-skill-registry
All skills →
About this skill
What does the resume skill do?

Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill resume-alirezarezvani-claude-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going