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

Cvat Push

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

Push uncertain or misclassified images to CVAT for human annotation review after training analysis.

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

Install

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

✓ 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-push)

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 Push? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Push to CVAT for Review

After training analysis identifies uncertain images, push them to CVAT for human annotation or correction.

Pre-Flight Checklist

  • [ ] yolo-analyze has been run (check for uncertain_images.txt or analysis output)
  • [ ] CVAT configured in yolo-project.yaml
  • [ ] CVAT_ACCESS_TOKEN env var is set

Workflow

1. Gather Uncertain Images

Read the analysis output:

cat reports/uncertain_images.txt

Or check experiments/analysis.md for the list of uncertain predictions.

2. Categorize by Priority

Organize images into review batches:

  • False negatives (highest priority): Images where the model missed detections but labels exist
  • Low confidence (medium priority): Detections with confidence between lowconf and highconf thresholds
  • No detection, no label (low priority): Images where neither model nor labels found anything

3. Push to CVAT

# From analysis file (auto-batches into tasks of 50)
yolo-cvat push --from-analysis reports/uncertain_images.txt

# Or manually specify images
yolo-cvat push --images  --labels  --task-name "Review: False Negatives"

4. Generate Report

Write experiments/cvat_push_report.md:

## CVAT Upload Report
- Date: YYYY-MM-DD
- Tasks created: N
- Total images: N
- False negatives: N (Task ID: X)
- Uncertain: N (Task ID: Y)
- CVAT URL: http://localhost:8080/tasks/

Decision Tree

More than 100 images?
├── Yes → Split into batches of 50, create multiple tasks
└── No → Single task

Has existing YOLO labels for these images?
├── Yes → Upload as pre-annotations (saves annotator time)
└── No → Push images only for fresh annotation

False negatives found?
├── Yes → Create separate high-priority task labeled "URGENT: False Negatives"
└── No → Single "Review: Uncertain" task

Guardrails

  • NEVER push more than 200 images without asking the user first
  • ALWAYS include pre-annotations when available (reduces annotation time)
  • Keep a local copy of all images — CVAT is not a backup
  • Write the push report before telling the user it's done

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.