One-click install
npx skills add https://github.com/Lingjie-wang/autoRL --skill experiment-bridge-lingjie-wang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: experiment-bridge
Source: https://github.com/Lingjie-wang/autoRL/tree/main/Auto-claude-code-research-in-sleep/skills/experiment-bridge
Command: npx skills add https://github.com/Lingjie-wang/autoRL --skill experiment-bridge-lingjie-wang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written experiment plan into running GPU experiments requires writing training and evaluation code, catching bugs before burning GPU hours, and orchestrating deployment — a slow, error-prone manual process. ## Core Features & Use Cases - Plan-Driven Implementation: Parses EXPERIMENT_PLAN.md and EXPERIMENT_TRACKER.md to generate training, evaluation, and data-loading scripts with fixed seeds and JSON/CSV result output. - Cross-Model Code Review: Sends experiment code to GPT-5.5 (via Codex MCP) for correctness review before deployment, catching logic bugs like using model outputs as ground truth. - Sanity-First Deployment with Auto-Debug: Runs the smallest sanity experiment first, auto-diagnoses failures (OOM, CUDA errors, NaN divergence) with up to 2 patches plus 2 clean reimplements, then routes small batches to /run-experiment or large sweeps to /experiment-queue. - Use Case: After finishing idea discovery, you have refine-logs/EXPERIMENT_PLAN.md with 12 experiments across 4 milestones. Run this skill to implement all scripts, get them reviewed, deploy to your GPUs, and collect initial results ready for /auto-review-loop. ## Quick Start Ask the AI to implement and deploy the experiments from refine-logs/EXPERIMENT_PLAN.md using the experiment-bridge skill.

Frequently Asked Questions about experiment-bridge

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

FAQPage Schema
How do I implement experiments from an experiment plan automatically?

Provide an EXPERIMENT_PLAN.md file with milestones, datasets, metrics, and hyperparameters. The skill parses the plan, writes training and evaluation scripts with fixed seeds, reviews the code, and deploys experiments to GPUs in milestone order.

How to run large multi-seed experiment sweeps on GPUs?

Milestones with 10 or more jobs, multi-seed grids, or phase dependencies are routed to /experiment-queue, which provides OOM-aware retry, wave-transition handling, and crash-safe state persistence. Small batches of 5 or fewer jobs use /run-experiment directly.

Can I use an existing GitHub repo as the experiment codebase?

Yes, set the BASE_REPO constant to a GitHub URL and the skill clones the repo first, then implements experiments by extending its existing code. When false, code is written from scratch or reuses existing project files.

What happens when a sanity experiment fails during deployment?

The skill auto-debugs by parsing tracebacks and logs, classifying failures like OOM, ImportError, or NaN divergence, then applies up to 2 patches and 2 clean reimplements. It can optionally call /codex:rescue for a second opinion before reporting the failure.

Does the skill verify evaluation uses real ground truth labels?

Yes, a critical rule requires evaluation scripts to compare predictions against the dataset's actual ground truth, never another model's output. The cross-model code review explicitly checks for this common and severe bug before deployment.