/exp-run

Execute planned ML experiments from wiki specs with deployment and result collection.

Updated May 23, 2026
One-click install
npx skills add https://github.com/duany049/multi-skill-orchestration --skill exp-run
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: /exp-run
Source: https://github.com/duany049/multi-skill-orchestration/tree/main/.claude/skills/exp-run
Command: npx skills add https://github.com/duany049/multi-skill-orchestration --skill exp-run

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill runs end-to-end machine learning experiments defined in your wiki, turning a planned experiment plan into deployed code, tracked execution, and collected results—while enforcing a manual approval gate before any deployment or execution.

Core Features & Use Cases

  • Experiment code generation & deployment: Converts wiki/experiments/{slug}.md into runnable code under experiments/code/{slug}/, then deploys it locally or remotely.
  • Operational safety via manual inspection: Requires user confirmation and asks for manual checks of critical configuration (dataset paths, interfaces, API settings) before execution proceeds.
  • Three execution modes: Supports deploy-only (default), collect-only (--collect / --check), and full end-to-end (--full) workflows.
  • Monitoring & result collection: Collects metrics and summarizes outcomes into wiki/experiments/{slug}.md, while appending operational logs to wiki/log.md.

Quick Start

Run: /exp-run <experiment-slug> --env local

Frequently Asked Questions about /exp-run

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate and deploy machine learning experiments from a wiki specification?

To orchestrate ML experiments from a wiki, convert the `wiki/experiments/{slug}.md` specification into runnable code, deploy it to a local or remote SSH GPU, and monitor execution. The workflow requires manual confirmation before deployment to ensure operational safety.

Can I run ML training deployments on a remote GPU via SSH?

Yes, you can run ML training deployments on a remote GPU via SSH. The system supports remote SSH-based deployments alongside local GPU runs, allowing you to execute planned machine learning experiments and collect the resulting metrics safely.

What is the best way to collect results from a completed machine learning training run?

The best way to collect results from ML training runs is using the collect-only execution mode. This mode checks and gathers metrics from completed deployments, summarizing outcomes into `wiki/experiments/{slug}.md` while appending operational logs to `wiki/log.md`.

Do I need to manually review generated experiment code before execution proceeds?

Yes, you must manually review generated experiment code before execution proceeds. The system enforces strict status gating and requires user confirmation, asking you to manually check critical configurations like dataset paths, interfaces, and API settings before deployment.

How do I control run modes for different stages of experiment orchestration?

You control run modes using command flags during experiment orchestration. Use the default for deploy-only, `--collect` or `--check` for collect-only, and `--full` for end-to-end execution, allowing you to manage the experiment lifecycle from deployment to result collection.