nvidia-skill-finder
Use for NVIDIA-related requests where an NVIDIA skill might help, even if the user did not ask for a skill. Trigger on NVIDIA products, hardware, software,…
Check progress for a detached KERMT run (pretrain, finetune, or any kermt_run_detached invocation). Reads run.json, queries docker for container state, tails the pretrain/finetune log, and parses progress lines (epoch, step, val loss).
$ npx -y skills add NVIDIA/skills --skill bionemo-kermt-monitor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/bionemo-kermt-monitorContext preview
The summary Claude sees to decide when to auto-load this skill.
Check progress for a detached KERMT run (pretrain, finetune, or any kermt_run_detached invocation). Reads run.json, queries docker for container state, tails the pretrain/finetune log, and parses progress lines (epoch, step, val loss).
name: kermt-monitor description: Check progress for a detached KERMT run (pretrain, finetune, or any kermt_run_detached invocation). Reads run.json, queries docker for container state, tails the pretrain/finetune log, and parses progress lines (epoch, step, val loss). license: Apache-2.0 compatibility: Requires docker and jq. Designed for Claude Code, Codex, and Nemotron. metadata: owner: evax@nvidia.com classification: atomic-skill risk_tier: skill # Line/token budget: this file is targeted at ~120 lines / ~1500 tokens — well # within the 500-line / 5000-token cap for skill files.
Companion skill for any KERMT workflow that runs detached: the three pretrain skills (`kermt-continue-pretrain`, `kermt-pretrain-scratch`, `kermt-add-cmim-pretrain`) plus `kermt-finetune`. `kermt-infer` and `kermt-embed` run blocking by default and don't need this skill, but if a user launches them detached on purpose the monitor still works (the workflow-dispatch in step 4 handles unknown workflows by tailing the most-recent log file in the run dir). Reads the run directory's `run.json`, queries docker for the container's state, surfaces the latest progress, and either tails or follows the log.
None. This skill only reads disk + queries docker; no GPU compute.
One of:
`run.json` (e.g. `runs/continue-pretrain_2026-05-17T10-23Z`). Preferred.
reads `run.json` from the run dir referenced inside the container's inspect output if available, but works degraded-mode without it.
Optional:
loss". Without it, the skill is one-shot and exits.
Useful when the parent agent wants to take downstream action.
Let `RUN_DIR=$1` (or whatever path the user supplies).
1. **Locate the manifest.**
MANIFEST=$RUN_DIR/run.json
Refuse to proceed if it doesn't exist; surface a helpful message pointing the user at the run-dir convention (`runs/<workflow>_<ts>/`).
2. **Parse the manifest** (Python helper):
workflow=$(jq -r .workflow $MANIFEST)
container_name=... # not directly in run.json today; the skill that
# launched stored it in run.json under
# container.name during launch (see below note).
logs_dir=$(jq -r .logs_dir $MANIFEST)
image_tag=$(jq -r .container.image_tag $MANIFEST)
started_at=$(jq -r .started_at $MANIFEST)3. **Query docker for container state.**
docker ps --filter "name=$container_name" --format \
'{{.ID}}\t{{.Status}}\t{{.CreatedAt}}'If absent, fall back to `docker inspect $container_name --format '{{.State.Status}} (exit {{.State.ExitCode}})'` to see whether the container exited (ok or failed) or was removed (`--rm` after exit).
4. **Find the live log file.**
case "$workflow" in
continue-pretrain|pretrain-scratch) LOG=$logs_dir/pretrain_ddp.log ;;
finetune) LOG=$logs_dir/finetune.log ;;
*) LOG=$(ls -1t $logs_dir/*.log 2>/dev/null | head -n 1) ;;
esacThe manifest's `workflow` field disambiguates pretrain (`pretrain_ddp.log`) from finetune (`finetune.log`). Other workflows fall back to the most-recently-modified `.log` in `$logs_dir`.
5. **Show the latest progress.**
summary. The format differs per workflow:
Current epoch: 12/100 step: 4523/9000 val_loss: 0.832 (best 0.821 @ step 4100)
val_auc for classification — read `args_applied.metric` from run.json)
Fold 0 epoch 12/30 val_mae 0.187 (best 0.182 @ epoch 9)
Wall-clock: 1h 23m since started_at; ETA ~6h remaining.
6. **Final test-metrics block (finetune, on completion).** If `workflow` is `finetune` AND the container has exited cleanly (`State.Status=exited`, `ExitCode=0`) AND `$RUN_DIR/ckpt/fold_*/test_result.csv` exists, parse it and emit a per-task metric table:
Final test metrics (per task):
Target MAE
HLM_clearance 0.187
RLM_clearance 0.213
MDR1-MDCK_efflux 0.241
solubility_pH6.8 0.156The metric column matches `args_applied.metric` (mae for regression, auc for classification, etc.). For multi-fold or ensemble runs, average across folds/models and note `± std` if std > 0. Skip silently if no `test_result.csv` exists (run incomplete or no test split was emitted).
7. **If `--follow`, stream live logs.**
docker logs -f $container_name
Wraps until ^C.
8. **Stop / cleanup hints** (printed at end of one-shot mode):
To stop: docker stop $container_name To remove: docker rm $container_name To re-run: `$(jq -r .cmd_replay $MANIFEST)`
container's checkpoint dir. The monitor only inspects.
user asks to stop, run `docker stop`; if they ask to abandon, leave it running and just exit.
prompts and emit a single JSON document so the parent agent can pipe it.
Th
Official, NVIDIA-verified Agent Skills for Claude Code, Codex, and other coding agents.
Use for NVIDIA-related requests where an NVIDIA skill might help, even if the user did not ask for a skill. Trigger on NVIDIA products, hardware, software,…
Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV/Parquet I/O, nullable semantics, and…
Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.
Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.
Calibrate a new dataset from live RTSP camera streams via the AutoMagicCalib REST API. Use when the user provides RTSP URLs or asks to calibrate live cameras;…
Run end-to-end calibration on the shipped sample dataset (sdg_08_2_sample_data_010926.zip) against a running AMC microservice. Use when user says 'test sample…