Experiment Dashboard
Displays an experiment dashboard showing results, active loops, and progress across all experiments. It can show a full dashboard, a single experiment detail, or all experiments in a domain, with optional export to CSV or Markdown.
✨ What it does
- Shows a full dashboard of all experiments with columns: domain, experiment, runs, kept, best, change, status, loop.
- Displays details for a single experiment, including active loop information from loop.json.
- Filters experiments by domain.
- Exports dashboard data to CSV or Markdown files.
- Checks for active loops and shows their interval, cron ID, and start date.
🎯 When to use it
- When the user asks how an autoresearch experiment is going.
- When the user runs the slash command /ar:ar-status.
- When you need a quick overview of all experiment results and loop statuses.
- When you want to export experiment data to CSV or Markdown for reporting.
🚀 How to use
Trigger: /ar:ar-status
Trigger by running the slash command /ar:ar-status or by asking how an experiment is going. Optionally provide an experiment name (domain/name), a --domain filter, or --format and --output for export.
Example prompts:
/ar:ar-status
/ar:ar-status engineering/api-speed
/ar:ar-status --domain engineering --format csv --output results.csv
📄 Output: A text table (or exported file) listing experiments with their metrics and loop status.
📦 Add this skill to Claude Code
# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills
# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/engineering/autoresearch-agent/skills/ar-status .claude/skills/ar-statusSkill source: engineering/autoresearch-agent/skills/ar-status/SKILL.md
⚠️ Good to know
Requires the log_results.py script and access to .autoresearch directories; loop status only shown if loop.json exists.
❓ FAQ
How do I see a single experiment's details?
Run /ar:ar-status with the experiment name, e.g., /ar:ar-status engineering/api-speed.
Can I export the dashboard?
Yes, use --format csv or --format markdown with an optional --output file.
What does the LOOP column show?
It shows the active loop interval (e.g., every 1h) or a dash if no loop is running.
🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.