allenai / monitor-experiment
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/monitor-experiment && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2679" && unzip -o skill.zip -d .claude/skills/monitor-experiment && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/monitor-experiment/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Monitor Beaker experiments until completion. Use when the user asks to monitor, check, or track a Beaker experiment.
0 views
0 installs
Skill Content
--- name: monitor-experiment description: Monitor Beaker experiments until completion. Use when the user asks to monitor, check, or track a Beaker experiment. allowed-tools: Bash(beaker:*) --- # Monitor Beaker Experiment ## Instructions When monitoring a Beaker experiment: 1. Get the experiment status using `beaker experiment get <experiment-id>` 2. Check if the experiment has completed by looking at `status.exited` 3. If still running, wait 30 seconds and check again 4. When complete: - If exitCode is 0: Report success - If exitCode is non-zero: Fetch and display logs with `beaker experiment logs <experiment-id>` 5. Continue monitoring until the experiment finishes or the user asks you to stop ## Examples Check experiment status: ```bash beaker experiment get 01KCW39T5JBZTYV69BXHWJJ83P ``` Get experiment logs on failure: ```bash beaker experiment logs 01KCW39T5JBZTYV69BXHWJJ83P ``` Stream logs in real-time for running experiments: ```bash beaker experiment logs --follow 01KCW39T5JBZTYV69BXHWJJ83P ```