スキル一覧に戻る
finbarrtimbers

monitor-experiment

by finbarrtimbers

My dotfiles config; recently updated to be more modular.

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


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

Finding the experiment ID

If no experiment ID is provided, find the most recent experiment:

# List experiments in a workspace (e.g., ai2/open-instruct-dev)
beaker workspace experiments ai2/open-instruct-dev 2>&1 | head -10

Common workspaces:

  • ai2/open-instruct-dev - Development experiments
  • ai2/lm-eval - Evaluation experiments
  • ai2/tulu-3-dev - Tulu development

Monitoring an experiment

  1. Get the experiment status:
beaker experiment get <experiment-id> --format json | jq '.[0] | {id, name, status: .jobs[0].status}'
  1. Check the status fields:

    • status.current: "scheduled", "starting", "running", "succeeded", "failed", "canceled"
    • status.exitCode: Exit code (0 = success, non-zero = failure)
    • status.started / status.exited: Timestamps
  2. If still running, wait 30 seconds and check again

  3. When complete:

    • If exitCode is 0: Report success
    • If exitCode is non-zero: Fetch and display logs
  4. Continue monitoring until the experiment finishes or the user asks to stop

Useful commands

# Check status (compact)
beaker experiment get <id> --format json | jq '.[0].jobs[0].status.current'

# Get logs on failure
beaker experiment logs <id>

# Get logs with tail (last N lines)
beaker experiment logs <id> 2>&1 | tail -100

# Open in browser
echo "https://beaker.org/ex/<id>"

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です