Install
1
Install the plugin
$
npx claudepluginhub alirezarezvani/claude-skills --plugin autoresearch-agent

Want just this skill?

Add to a custom plugin, then install with one command.

Description

Show experiment dashboard with results, active loops, and progress.

Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

/ar:status — Experiment Dashboard

Show experiment results, active loops, and progress across all experiments.

Usage

/ar:status                                  # Full dashboard
/ar:status engineering/api-speed            # Single experiment detail
/ar:status --domain engineering             # All experiments in a domain
/ar:status --format markdown                # Export as markdown
/ar:status --format csv --output results.csv  # Export as CSV

What It Does

Single experiment

python {skill_path}/scripts/log_results.py --experiment {domain}/{name}

Also check for active loop:

cat .autoresearch/{domain}/{name}/loop.json 2>/dev/null

If loop.json exists, show:

Active loop: every {interval} (cron ID: {id}, started: {date})

Domain view

python {skill_path}/scripts/log_results.py --domain {domain}

Full dashboard

python {skill_path}/scripts/log_results.py --dashboard

For each experiment, also check for loop.json and show loop status.

Export

# 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}

Output Example

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     —
Stats
Stars5871
Forks688
Last CommitMar 13, 2026
Actions

Similar Skills

cache-components

Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.

138.4k