一键导入
eval-tracking
Use when evaluating checkpoints to maintain a persistent log of what was evaluated, the metrics, qualitative assessment, and verdict.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when evaluating checkpoints to maintain a persistent log of what was evaluated, the metrics, qualitative assessment, and verdict.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use immediately before moving or publishing a checkpoint, and after downloading it, to generate or verify a lightweight SHA-256 file manifest.
Use before running a checkpoint on a robot or inference rig to audit the real sensor-to-action chain using saved model assets, runner code, and live or replay samples.
Use before committing to a full training run to reconcile a base model's baked-in expectations against the training config and the actual dataset, catching semantic mismatches (normalization, feature order, units, encoding) that build and run fine but silently ruin results.
Use when submitting, monitoring, or reviewing HPC training runs to maintain a persistent log of each run's config, status, results, and next steps.
Use when running ML training workflows on Slurm-based HPC clusters, including environment setup, data and image transfer, job submission, monitoring, debugging, and storage cleanup, especially when notes are ad-hoc, usernames differ, or commands may expose secrets.
Use when preparing cluster-ready containers by validating a repo locally with Docker and promoting the result into the container artifact or runtime required by the target cluster.
| name | eval-tracking |
| description | Use when evaluating checkpoints to maintain a persistent log of what was evaluated, the metrics, qualitative assessment, and verdict. |
Use when evaluating a checkpoint. Eval logs record artifact provenance, metrics, qualitative observations, and a verdict. Run logs track training; eval logs track the artifacts training produced.
Verify artifact integrity
verify-checkpoint <ckpt_dir>.checkpoint-integrity from this repo.checkpoint-integrity/SKILL.md.Create eval log
eval_logs/<group>/<date>_<task>.md before submission.Submit/run eval
Monitor progress
Complete the eval log
Handoff
Eval logs live in eval_logs/, parallel to run_logs/. Group into
subdirectories by component/task when useful, and keep a timeline.md per group.
Name logs <date>_<task>.md. Include:
# eval - <short description>
## Provenance
- checkpoint: `<path>`
- manifest: `<path>/CHECKPOINT_MANIFEST.json` (sha256: `<hash>`)
- source_run_log: `<path>`
- config_snapshot: `<path>`
- dataset: `<path or URL>`
## Job
- execution_id:
- submitted/start:
- end:
- runtime:
## Metrics
## Qualitative
## Verdict
- verdict: <one-line recommendation grounded in evidence>
## Next
A promotion note is a checkpoint-level decision informed by one or more eval logs. It answers: "given all available evidence, what should happen next?"
Name it eval_logs/<group>/<date>-promotion-note.md.
Use exactly one action:
rejectneeds_more_evalpromote_to_simpromote_to_preflightcandidate_for_robotTemplate:
# checkpoint promotion - <checkpoint name or HF revision>
## Decision
- action: `reject` | `needs_more_eval` | `promote_to_sim` | `promote_to_preflight` | `candidate_for_robot`
- decided_at:
- decided_by:
## Artifact
- hf_repo:
- hf_revision:
- checkpoint_path_or_snapshot:
- manifest_sha256:
- source_run_log:
## Evidence Reviewed
- eval_log:
- simulation_log:
- preflight_audit:
## Signals
- hard_gates:
- positive_signals:
- negative_signals:
- missing_evidence:
- contradictory_evidence:
## Rationale
## Next
CHECKPOINT_MANIFEST.json.