agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Use when the user runs /ar:ar-resume or asks to pick up a previously started autoresearch experiment.
$ npx -y skills add alirezarezvani/claude-skills --skill ar-resume --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ar-resumeContext 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:ar-resume or asks to pick up a previously started autoresearch experiment.
name: "ar-resume" description: "Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Use when the user runs /ar:ar-resume or asks to pick up a previously started autoresearch experiment." command: /ar:ar-resume
Resume a paused or context-limited experiment. Reads all history and continues where you left off.
/ar:ar-resume # List experiments, let user pick /ar:ar-resume engineering/api-speed # Resume specific experiment
If no experiment specified:
python {skill_path}/scripts/setup_experiment.py --listShow status for each (active/paused/done based on results.tsv age). Let user pick.
# 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 -20Summarize 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: 3 kept, 1 discarded (consistently helpful) - Algorithm changes: 2 discarded, 1 crashed (high risk, low reward so far) - I/O optimization: 2 kept (promising direction)
How would you like to continue? 1. Single iteration (/ar:run) — I'll make one change and evaluate 2. Start a loop (/ar:loop) — Autonomous with scheduled interval 3. Just show me the results — I'll review and decide
If the user picks loop, hand off to `/ar:loop` with the experiment pre-selected. If single, hand off to `/ar:run`.
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…