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…
Show experiment dashboard with results, active loops, and progress. Use when the user runs /ar:ar-status or asks how an autoresearch experiment is going.
$ npx -y skills add alirezarezvani/claude-skills --skill ar-status --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ar-statusContext preview
The summary Claude sees to decide when to auto-load this skill.
Show experiment dashboard with results, active loops, and progress. Use when the user runs /ar:ar-status or asks how an autoresearch experiment is going.
name: "ar-status" description: "Show experiment dashboard with results, active loops, and progress. Use when the user runs /ar:ar-status or asks how an autoresearch experiment is going." command: /ar:ar-status
Show experiment results, active loops, and progress across all experiments.
/ar:ar-status # Full dashboard /ar:ar-status engineering/api-speed # Single experiment detail /ar:ar-status --domain engineering # All experiments in a domain /ar:ar-status --format markdown # Export as markdown /ar:ar-status --format csv --output results.csv # Export as CSV
python {skill_path}/scripts/log_results.py --experiment {domain}/{name}Also check for active loop:
cat .autoresearch/{domain}/{name}/loop.json 2>/dev/nullIf loop.json exists, show:
Active loop: every {interval} (cron ID: {id}, started: {date})python {skill_path}/scripts/log_results.py --domain {domain}python {skill_path}/scripts/log_results.py --dashboardFor each experiment, also check for loop.json and show loop status.
# CSV
python {skill_path}/scripts/log_results.py --dashboard --format csv --output {file}
# Markdown
python {skill_path}/scripts/log_results.py --dashboard --format markdown --output {file}DOMAIN EXPERIMENT RUNS KEPT BEST CHANGE STATUS LOOP engineering api-speed 47 14 185ms -76.9% active every 1h engineering bundle-size 23 8 412KB -58.3% paused — marketing medium-ctr 31 11 8.4/10 +68.0% active daily prompts support-tone 15 6 82/100 +46.4% done —
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…