一键导入
yolo-detector
Use when designing or verifying Ultralytics YOLO detection, segmentation, tracking, or pose inference with licensed models and stable JSON outputs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when designing or verifying Ultralytics YOLO detection, segmentation, tracking, or pose inference with licensed models and stable JSON outputs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when routing an ambiguous Computer Vision task to a bounded local, webapp, model, dataset, demo, and verification skill stack.
Use when starting a Computer Vision web application with Next.js, FastAPI, browser MediaPipe, typed APIs, bounded uploads, and private media handling.
Use when extracting, labeling, splitting, converting, validating, or versioning Computer Vision datasets with provenance, privacy, and leakage controls.
Use when building browser or Python hand, gesture, face, or pose interactions with smoothing, semantic events, and privacy-preserving media handling.
Use when building or reviewing OpenCV image, video, or webcam frame loops with deterministic fallbacks, performance measurement, and reliable cleanup.
Use when packaging an existing Computer Vision pipeline as a reproducible local CLI or lightweight demo with explicit artifacts and verification.
| name | yolo-detector |
| description | Use when designing or verifying Ultralytics YOLO detection, segmentation, tracking, or pose inference with licensed models and stable JSON outputs. |
Define a reproducible YOLO inference boundary for detection, segmentation, tracking, or pose. Keep model configuration, preprocessing, postprocessing, result serialization, licensing, and verification explicit.
cv-project-router first.xyxy boxes in JSON, with source dimensions included.opencv-realtime-camera and web boundaries
delegated to cv-webapp-starter.vision-verifier using a licensed static fixture and expected
structural assertions rather than brittle exact detections alone.Emit versioned JSON with this minimum shape:
{
"schema_version": "1.0",
"task": "object-detection",
"source": {"width": 1280, "height": 720},
"model": {"id": "approved-model", "version": "pinned-version"},
"detections": [
{
"id": "det-1",
"class_id": 0,
"label": "person",
"confidence": 0.93,
"bbox": {
"x_min": 120.4,
"y_min": 80.1,
"x_max": 460.7,
"y_max": 690.0,
"coordinate_space": "pixel"
}
}
],
"timing_ms": {"preprocess": 0.0, "inference": 0.0, "postprocess": 0.0}
}
Segmentation, pose, and tracking extensions must be versioned and documented. Artifact references must be opaque relative paths or authorized URLs, never local filesystem paths.