AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Cvat Deploy

skill-macroman5-autotrain-yolo-cvat-deploy · by MacroMan5

Deploy a trained YOLO model as a Nuclio serverless function for CVAT auto-annotation.

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-macroman5-autotrain-yolo-cvat-deploy

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-macroman5-autotrain-yolo-cvat-deploy)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cvat Deploy? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Deploy Model to CVAT

Deploy a trained YOLO model as a Nuclio serverless function so CVAT users can auto-annotate images directly from the CVAT UI.

Pre-Flight Checklist

  • [ ] Trained model exists (best.pt or user-specified)
  • [ ] Nuclio is running (check port 8070)
  • [ ] yolo-project.yaml has class definitions
  • [ ] Docker is running (required for Nuclio builds)

Workflow

1. Identify the Model

  • Use the best model from the latest experiment, or ask the user
  • Check experiments/summary.md for the best-performing model path

2. Generate Nuclio Function

yolo-cvat deploy --model  --name 

This generates:

  • serverless//function.yaml — Nuclio config with class spec
  • serverless//main.py — Inference handler
  • serverless//best.onnx — Exported model

3. Verify Generated Files

Read the generated function.yaml and confirm:

  • Class names match yolo-project.yaml
  • Image name is unique
  • ONNX model was exported correctly

4. Deploy to Nuclio

Provide the command for the user to run:

nuctl deploy --path ./serverless/ --platform local

5. Verify Deployment

nuctl get functions

Check that the function is running.

Decision Tree

Model is .pt format?
├── Yes → Export to ONNX first (yolo-export)
└── Already .onnx → Copy directly

Nuclio reachable on port 8070?
├── Yes → Ready to deploy
└── No → Warn user, suggest checking Docker and CVAT stack

Function with same name exists?
├── Yes → Ask user: overwrite or use different name?
└── No → Deploy normally

Guardrails

  • NEVER deploy without confirming class mapping matches CVAT project labels
  • ALWAYS verify the ONNX export succeeded before deploying
  • Document the deployed model version and metrics in experiments/
  • If deployment fails, show the Nuclio dashboard URL for debugging (http://localhost:8070)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.