From skill-sommelier
Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations; the outer loop synthesizes results, identifies patterns, and steers research direction. Produces research presentations and papers. Use when asked to run autonomous research, design and execute ML experiments end-to-end, or generate a research report from a hypothesis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skill-sommelier:ss-autoresearchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrates end-to-end AI research using a two-loop architecture. The outer
Orchestrates end-to-end AI research using a two-loop architecture. The outer loop steers direction; the inner loop executes experiments rapidly. Outputs include structured findings, analysis notebooks, and draft papers.
Outer Loop (strategic)
└─ sets hypothesis, reads inner-loop summaries, adjusts direction
Inner Loop (tactical)
└─ runs experiment → collects metrics → writes summary → repeats
research/plan.md with: hypothesis, success criteria, compute budget.For each experiment iteration:
research/experiments/<run_id>/config.md.# Run experiment and capture output
python experiments/run.py --config research/experiments/<run_id>/config.md \
2>&1 | tee research/experiments/<run_id>/log.txt
Write results to research/experiments/<run_id>/metrics.json:
{
"run_id": "<run_id>",
"hypothesis": "...",
"metric_name": 0.0,
"wall_time_s": 0
}
Append one-paragraph summary to research/findings.md:
Triggered after each inner-loop surface event.
research/experiments/*/metrics.json and research/findings.md.research/plan.md with revised direction.Create research/report.md containing:
If the user wants slides, generate them with a presentation tool using research/report.md as input.
research/plan.md.| File | Purpose |
|---|---|
research/plan.md | Hypothesis, success criteria, budget |
research/findings.md | Running narrative across all experiments |
research/experiments/<id>/config.md | Per-run configuration |
research/experiments/<id>/metrics.json | Per-run metrics |
research/report.md | Final synthesized report |
npx claudepluginhub jasonlo/skill-sommelierGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.