Best for
- ≥10 jobs that need batching across GPUs
- Multi-seed sweeps (e.g., 21 seeds × 12 cells)
- Wave transitions (run wave 1, wait, run wave 2, wait, run wave 3...)
zjunlp/Mechanist/skills/experiment-queue/SKILL.md
SSH job queue for multi-seed / multi-config ML experiments with OOM-aware retry, stale-screen cleanup, wave-transition race prevention, and phase-dependency enforcement. Use when user says "batch experiments", "queue experiments", "run grid", "multi-seed sweep", "auto-chain experiments", or when `/run-experiment` is insufficient for ≥10 jobs that need orchestration. `/auto-experiment` Phase 4 auto-routes here when a milestone declares ≥10 jobs or has `depends_on`.
Decision brief
Orchestrate large batches of ML experiments on SSH remote GPU servers with proper state tracking, OOM retry, stale-screen cleanup, wave transitions, and phase-dependency enforcement.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/zjunlp/Mechanist --skill "skills/experiment-queue"Inspect the Agent Skill "experiment-queue" from https://github.com/zjunlp/Mechanist/blob/407b0ca20c50dafd666e889868617c5095f4b5a8/skills/experiment-queue/SKILL.md at commit 407b0ca20c50dafd666e889868617c5095f4b5a8. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Input can be: - YAML manifest (explicit job list, recommended for complex cases) - Grid spec (Cartesian product of param values, e.g., N=[64,128,256] × n=[50K,150K,500K,652K]) - Natural language description (Claude parses into manifest)
Input can be: - YAML manifest (explicit job list, recommended for complex cases) - Grid spec (Cartesian product of param values, e.g., N=[64,128,256] × n=[50K,150K,500K,652K]) - Natural language description (Claude parses into manifest)
If any precondition fails, show user which jobs are blocked and why.
The scheduler implementation lives in this skill's scripts/queuemanager.py. Three preliminaries before launch.
bash ssh "cat \"$REMOTERUNDIR/queuestate.json\"" \ | jq '.jobs | groupby(.status) | map({(.[0].status): length}) | add' yaml grid: N: [64, 128, 256] n: [50000, 150000, 500000, 652000] seed: [42, 200, 201] template: id: "s${seed}N${N}n${n}" args: {seed: ${seed}, nhidden: ${N}, nt…
Permission review
The documentation asks the agent to run terminal commands or scripts.
*3e. Resume an existing queue (only when the user asks).** A fresh `RUN_TS` per invocation is correct for *new* queues. To resume a crashed queue, do NOT regenerate `RUN_TS` — reload the recorded values and re-run only the launch command (SEvidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 94/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 48 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Orchestrate large batches of ML experiments on SSH remote GPU servers with proper state tracking, OOM retry, stale-screen cleanup, wave transitions, and phase-dependency enforcement.
Use when /run-experiment is insufficient:
Do NOT use for:
/run-experiment)The major wall-clock sinks in multi-seed grid experiments are:
All of these are pure engineering friction that can be orchestrated. /run-experiment + /monitor-experiment cover ad-hoc single runs but lack OOM retry, displacement-aware GPU gating, wave settlement, and crash-safe state — at ≥10 concurrent jobs these gaps start firing.
A manifest lists jobs with explicit state:
project: my_grid_experiment
cwd: /home/user/your_project
conda: my_env
# Optional: override conda hook path if conda is not at a standard location.
# Can be a bare path (wrapped automatically) or a full `eval "$(... shell.bash hook)"` string.
# Falls back to auto-detect of ~/anaconda3, ~/miniconda3, /opt/anaconda3, etc.,
# or the MECHANIST_CONDA_HOOK environment variable.
# conda_hook: /custom/path/to/conda
ssh: gpu-server
default_cmd: >
python run_distill.py --backbone softmax --lam 0.5
--K 500 --L 96 --W 16 --n_steps 30000 --batch_size 128 --lr 1e-4
preconditions:
- type: checkpoint_exists
path: checkpoints/transformer/teacher_L96_K500_N{N}.pt
gpus: [0, 1, 2, 3, 4, 5, 6, 7]
max_parallel: 8
gpu_free_threshold_mib: 500 # optional, default 500; raise for shared servers, lower for tight packing
oom_retry:
delay: 120
max_attempts: 3
jobs:
- id: s200_N64_n50K
args: {seed: 200, n_hidden: 64, n_train_subset: 50000, subset_seed: 2024}
- id: s200_N128_n50K
args: {seed: 200, n_hidden: 128, n_train_subset: 50000, subset_seed: 2024}
# ... 14 more
pending → running → completed
↘ failed_oom → pending (after delay) [retry up to N]
↘ failed_other → stuck (needs manual inspection)
stale_screen_detected → cleaned → pending
A "wave" is a batch of jobs that fit available GPUs. Next wave only starts when:
cost.json and queue_state.jsonMECHANIST has two parallel state files at different granularities:
| File | Granularity | Writer | Consumers |
|---|---|---|---|
runs/<run-id>/cost.json | Per-run (1 file per logical experiment run) | /run-experiment Step 5.5 (initial stub) + /monitor-experiment Step 3.6 (finalize) | /auto-experiment Phase 5, /auto-iteration-loop Phase C, /auto-verify budget tracking |
$REMOTE_RUN_DIR/queue_state.json | Per-batch (1 file per /experiment-queue invocation, covering all jobs in the batch) | bundled queue_manager.py copied from this skill's scripts/ directory — updated every poll cycle | This skill's monitoring (Step 4), Phase-4 batch-level diagnostics in /auto-experiment |
They are complementary, not redundant: queue_state.json is the source of truth for "which jobs in this batch are still running / OOM-retrying / stuck"; cost.json is the source of truth for "how many GPU-hours did this individual run consume." When /experiment-queue finishes a job (state machine transitions running → completed), its expected_output is verified — at that point the caller of /experiment-queue (typically /auto-experiment Phase 4) should invoke /monitor-experiment on each completed job to finalize that run's cost.json. Do not duplicate cost accounting inside queue_state.json — keep the two files at their respective granularities.
Input can be:
N=[64,128,256] × n=[50K,150K,500K,652K])Bind the run identifiers once so every later step (manifest save, scp, launch, monitor, resume) refers to the same paths. Set these as local shell variables before generating the manifest:
# REPLACE the placeholder path before running, or pre-export PROJECT_DIR:
PROJECT_DIR="${PROJECT_DIR:?set PROJECT_DIR to the local project root}"
RUN_TS=$(date -u +%Y%m%dT%H%M%SZ) # one timestamp per run, reused everywhere
LOCAL_RUN_DIR="$PROJECT_DIR/experiment_queue/$RUN_TS"
mkdir -p "$LOCAL_RUN_DIR"
Save the built manifest to $LOCAL_RUN_DIR/manifest.json for reproducibility.
When invoked from /auto-experiment Phase 4 (auto-routed), the caller forwards the milestone's run list plus a derived phases: block (one phase per milestone, with depends_on: populated from EXPERIMENT_PLAN.md's declared dependencies); this skill does not re-parse the plan.
cwd exists on remotemax_parallel free GPUs)If any precondition fails, show user which jobs are blocked and why.
The scheduler implementation lives in this skill's scripts/queue_manager.py. Three preliminaries before launch.
3a. Resolve the local helper directory. The two helpers (queue_manager.py, build_manifest.py) sit under scripts/ next to this SKILL.md:
QUEUE_TOOLS="${CLAUDE_SKILL_DIR}/scripts"
[ -f "$QUEUE_TOOLS/queue_manager.py" ] || { echo "ERROR: experiment_queue helpers not found under \$CLAUDE_SKILL_DIR/scripts" >&2; exit 1; }
Do not resolve these helpers from the user's current project directory; pluginized skills should use their own bundled scripts.
3b. Compute remote paths. Use both a remote-relative form (for scp destinations — modern scp runs in SFTP mode and does NOT reliably expand $HOME in destination paths) and a $HOME-prefixed form (for ssh ... command strings, where remote bash WILL expand $HOME):
REMOTE_RUN_REL=".mechanist_queue/runs/$RUN_TS" # for scp destinations (relative to remote home)
REMOTE_RUN_DIR="\$HOME/$REMOTE_RUN_REL" # for ssh command strings (literal $HOME, expanded on remote)
3c. Bootstrap the remote run directory and copy helpers + manifest. Per-invocation and idempotent. Use a unique run directory rather than /tmp so concurrent queues do not collide and so resume-after-crash is reproducible.
ssh <server> "mkdir -p \"$REMOTE_RUN_DIR/logs\" \"\$HOME/.mechanist_queue\""
scp "$QUEUE_TOOLS/queue_manager.py" "$QUEUE_TOOLS/build_manifest.py" <server>:.mechanist_queue/
scp "$LOCAL_RUN_DIR/manifest.json" <server>:"$REMOTE_RUN_REL/manifest.json"
3d. Launch the scheduler as a detached nohup process on the SSH host:
ssh <server> "nohup python3 \"\$HOME/.mechanist_queue/queue_manager.py\" \\
--manifest \"$REMOTE_RUN_DIR/manifest.json\" \\
--state \"$REMOTE_RUN_DIR/queue_state.json\" \\
--log-dir \"$REMOTE_RUN_DIR/logs\" \\
> \"$REMOTE_RUN_DIR/queue_mgr.log\" 2>&1 &"
Notes for callers:
--log-dir is what queue_manager.py actually consumes (per-job log files for OOM detection). Do NOT pass --log <path> — that flag is declared but unused, and a single combined log breaks the per-job stale-screen / OOM heuristics.
Persist RUN_TS / REMOTE_RUN_REL / REMOTE_RUN_DIR to disk so monitoring and resume can reload them without regenerating:
{
printf 'PROJECT_DIR=%q\n' "$PROJECT_DIR"
printf 'RUN_TS=%q\n' "$RUN_TS"
printf 'LOCAL_RUN_DIR=%q\n' "$LOCAL_RUN_DIR"
printf 'REMOTE_RUN_REL=%q\n' "$REMOTE_RUN_REL"
printf 'REMOTE_RUN_DIR=%q\n' "$REMOTE_RUN_DIR"
} > "$LOCAL_RUN_DIR/run_meta.txt"
%q shell-escapes the values so the file is safely sourceable later. Note that REMOTE_RUN_DIR keeps a literal $HOME (do not expand it locally), which is the right form for re-use inside ssh "..." strings later.
3e. Resume an existing queue (only when the user asks). A fresh RUN_TS per invocation is correct for new queues. To resume a crashed queue, do NOT regenerate RUN_TS — reload the recorded values and re-run only the launch command (Step 3d), not the bootstrap (Step 3c):
LOCAL_RUN_DIR="/abs/path/to/project/experiment_queue/<existing-run-ts>" # the run dir to resume
. "$LOCAL_RUN_DIR/run_meta.txt" # reloads PROJECT_DIR / RUN_TS / REMOTE_RUN_REL / REMOTE_RUN_DIR
# Then re-run Step 3d verbatim. Do NOT re-run Step 3c (would overwrite manifest.json + state.json).
The scheduler:
screenqueue_state.json continuouslyUser can check state anytime, using $REMOTE_RUN_DIR from Step 3b (or reload from $LOCAL_RUN_DIR/run_meta.txt for an older run):
ssh <server> "cat \"$REMOTE_RUN_DIR/queue_state.json\"" \
| jq '.jobs | group_by(.status) | map({(.[0].status): length}) | add'
Note: /monitor-experiment is focused on per-run screen sessions, result JSONs, W&B, and the cost.json finalization (Step 3.6 there). For batch-level queue-state monitoring, use the literal jq command above against the recorded REMOTE_RUN_DIR. The two views are complementary — see the "Coordination with cost.json and queue_state.json" section above.
When all jobs in manifest.json are completed or stuck:
queue_manager.py) exits cleanly with All jobs done to its own stdout (captured in $REMOTE_RUN_DIR/queue_mgr.log). It does NOT write the local summary.$LOCAL_RUN_DIR/summary.md (read $REMOTE_RUN_DIR/queue_state.json, group by status, optionally pull per-job logs)./monitor-experiment on each completed job to finalize its runs/<job-id>/cost.json (so downstream consumers can read GPU-hours from the canonical place)./analyze-results if analyze_on_complete: true.Instead of writing 24 job entries manually:
grid:
N: [64, 128, 256]
n: [50000, 150000, 500000, 652000]
seed: [42, 200, 201]
template:
id: "s${seed}_N${N}_n${n}"
args: {seed: ${seed}, n_hidden: ${N}, n_train_subset: ${n}}
Expands to 36 jobs automatically.
For sequential phases (teacher → student):
phases:
- name: train_teachers
grid:
N: [384, 512]
template:
cmd: python run_train.py --direction c --backbone softmax --n_hidden ${N} ...
output_check: checkpoints/transformer/teacher_L96_K500_N${N}.pt
- name: distill_students
depends_on: train_teachers
grid:
N: [384, 512]
seed: [42, 200, 201]
template:
cmd: python run_distill.py --n_hidden ${N} --seed ${seed} ...
output_check: figures/distill_sw_N${N}_*_seed${seed}.json
Scheduler enforces depends_on: distill_students jobs stay pending until all
train_teachers jobs are completed.
Detect OOM from stdout:
torch\.OutOfMemoryError: CUDA out of memory
On detection:
failed_oomoom_retry.delay secondspendingoom_retry.max_attempts before marking stuckEvery 60s, for each running screen:
screen -ls)ps -p)completed, kill stale screenfailed_other, kill screenIf scheduler crashes / is killed:
queue_state.jsonrunning job: check screen; if still alive, keep; if not, re-evaluate statepending: continue normally# Experiment Queue Summary
**Project**: my_grid_experiment
**Started**: 2026-05-18 11:36:29
**Completed**: 2026-05-18 18:02:14
**Total wall-clock**: 6h 25m
**Jobs**: 40 completed, 2 OOM-retried then completed, 0 stuck
## Phases
| Phase | Jobs | Success | OOM retries | Duration |
| --- | --- | --- | --- | --- |
| train_teachers | 2 | 2 | 0 | 58m |
| distill_students | 24 | 24 | 2 | 4h 02m |
| multi_seed_validation | 16 | 16 | 0 | 1h 25m |
## Results Files
- 42 JSON files in `figures/distill_sw_*.json`
- 42 cost manifests in `runs/<job-id>/cost.json` (finalized via `/monitor-experiment` Step 3.6)
## Next Steps
- Run `/analyze-results` on output JSONs
- Caller (`/auto-experiment` Phase 5) aggregates per-run cost manifests into the milestone summary
/run-experiment| Feature | /run-experiment | experiment-queue |
|---|---|---|
| Single-shot experiment | ✅ | ✅ (overkill) |
| Multi-GPU parallel | Basic | Proper scheduling |
| Wave transitions | Manual | Automatic |
| OOM retry | Manual | Automatic |
| Stale screen cleanup | Manual | Automatic |
| Teacher→student chain | Manual | Built-in |
| State persistence | cost.json per-run only | queue_state.json per-batch + per-run cost.json |
| Resume on crash | Per-run only (no batch state) | Yes, batch-level |
| Grid expansion | Manual | Declarative |
Rule: Use /run-experiment for ≤5 jobs. Use experiment-queue for ≥10 jobs or any milestone with depends_on. /auto-experiment Phase 4 auto-routes based on this rule — see its "Phase 4: Deploy Full Experiments" section.
memory.used < 500 MiB before launching new jobqueue_state.json atomically (write tmp + rename)stuck and alertcost.json finalization is the caller's job — this skill writes batch state; per-run cost manifests are finalized by /monitor-experiment Step 3.6, invoked by the caller after batch completionstuck, alertsUser: "Run all T5+T6 experiments: T5 = N∈{80,192} × n 4 values × seed {200,201}, T6 = N∈{384,512} × n 4 values × seed {42,200,201}; T6 needs its teacher trained first"
Claude invokes /experiment-queue:
Then user can check anytime or wait for summary report.
/run-experiment — single experiment deployment; writes per-run cost.json stub/monitor-experiment — per-run progress check + finalizes cost.json/auto-experiment Phase 4 — auto-routes to this skill when a milestone declares ≥10 jobs or has depends_onskills/experiment-queue/scripts/queue_manager.py (bundled) — the scheduler implementation; resolved at runtime via $CLAUDE_SKILL_DIR/scriptsskills/experiment-queue/scripts/build_manifest.py (bundled) — build manifest from grid spec; same resolutionAdapted from an upstream experiment-queue skill (originally identified via a 2026-04-16 post-mortem of a 1.5-day multi-seed paper experiment session). The wall-clock sinks identified there — stale screens, OOM, wave transitions, manual parser — all apply identically to MECHANIST's experiment stage when run sizes exceed /run-experiment's single-shot scope. The Python helpers (queue_manager.py, build_manifest.py) are a direct port with environment-variable renames and cost.json coordination added.
Frequently asked questions
Orchestrate large batches of ML experiments on SSH remote GPU servers with proper state tracking, OOM retry, stale-screen cleanup, wave transitions, and phase-dependency enforcement.
The source record exposes this install command: npx skills add https://github.com/zjunlp/Mechanist --skill "skills/experiment-queue". Inspect the command and pinned source before running it.
Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.