Agent skill

verify-training-pipeline

Verify a CVlization training pipeline example is properly structured, can build, trains successfully, and logs appropriate metrics. Use when validating example implementations or debugging training issues.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill verify-training-pipeline-kungfuai-cvlization --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/ai-ml/verify-training-pipeline-kungfuai-cvlization/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Verify Training Pipeline Systematically verify that a CVlization training example is complete, properly structured, and functional. ## When to Use - Validating a new or modified training example - Debugging training pipeline issues - Ensuring example completeness before commits - Verifying example works after CVlization updates ## Important Context **Shared GPU Environment**: This machine may be used by multiple users simultaneously. Before running GPU-intensive training: 1. Check GPU memory availability with `nvidia-smi` 2. Wait for sufficient VRAM and low GPU utilization if needed 3. Consider stopping other processes if you have permission 4. If CUDA OOM errors occur, wait and retry when GPU is less busy ## Verification Checklist ### 1. Structure Verification Check that the example directory contains all required files: ```bash # Navigate to example directory cd examples/<capability>/<task>/<framework>/ # Expected structure: # . # ├── example.yaml # Required: CVL metadata # ├── Dockerfile # Required: Container definition # ├── build.sh # Required: Build script # ├── train.sh # Required: Training script # ├── train.py # Required: Training code # ├── README.md # Recommended: Docu

What's inside
Steps it walks through
  1. When to Use
  2. Important Context
  3. Verification Checklist
  4. 1. Structure Verification
  5. 2. Build Verification
  6. 3. Training Verification
  7. 4. Metrics Verification
  8. 5. Runtime Checks
  9. 6. Lazy Downloading & Caching Verification
  10. 7. Quick Validation Test
  11. 8. Update Verification Metadata
  12. Common Issues and Fixes
  13. Build Failures
  14. Training Failures
Ships with 1 file
  • metadata.json
Commands it runs
Navigate to example directory
cd examples/<capability>/<task>/<framework>/
Expected structure:
Option 1: Build using script directly
Option 2: Build using CVL CLI (recommended)
cvl run <example-name> build
Verify image was created
docker images | grep <example-name>
Option 1: Run training using script directly
Option 2: Run training using CVL CLI (recommended)
More from claude-skill-registry
All skills →
About this skill
What does the verify-training-pipeline skill do?

Verify a CVlization training pipeline example is properly structured, can build, trains successfully, and logs appropriate metrics. Use when validating example implementations or debugging training issues.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill verify-training-pipeline-kungfuai-cvlization --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going