domain-yolo

domain-yolo is a skill for Claude Code from AxGord/claude-workflow. It costs 10 tokens per session (882 once invoked), scanned A, original, MIT.

A guide for choosing among YOLO object-detection models, which find and label objects in images or video. It covers model generations, prompt-based detection, and how image batches affect memory use.

In plain words
What is it for?
Use it when selecting a YOLO model for new detection work, CPU or edge deployment, prompt-based detection, or batch prediction. It is also a reference when replacing one model file with another or comparing YOLO versions.
Why use it?
It helps avoid choosing an outdated model or misunderstanding speed, detection modes, and batch behavior. It also points out details that can cause unexpectedly large memory allocations.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the workflow plugin — 28 skills, 2 hooks, 1 MCP server shipped together

Good fit Use it when selecting a YOLO model for new detection work, CPU or edge deployment, prompt-based detection, or batch prediction. It is also a reference when replacing one model file with another or comparing YOLO versions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/axgord/claude-workflow/domain-yolo
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AxGord/claude-workflow --skill domain-yolo
Clone the repo
git clone --depth 1 https://github.com/AxGord/claude-workflow

Made for: Claude Code.

Or install workflow, the plugin that ships this one along with the rest of its 28 skills, 2 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for domain-yolo

README.md
[![agentmods](https://agentmods.dev/badge/skills/axgord/claude-workflow/domain-yolo/github.svg)](https://agentmods.dev/skills/axgord/claude-workflow/domain-yolo)
Your own site
<a href="https://agentmods.dev/skills/axgord/claude-workflow/domain-yolo"><img src="https://agentmods.dev/badge/skills/axgord/claude-workflow/domain-yolo/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for domain-yolo

Your own site · 80×15
<a href="https://agentmods.dev/skills/axgord/claude-workflow/domain-yolo"><img src="https://agentmods.dev/badge/skills/axgord/claude-workflow/domain-yolo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 882 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00010 $0.00882
Opus 5 $0.00005 $0.00441
Sonnet 5 $0.00002 $0.00176
Haiku 4.5 $0.00001 $0.00088

Measured 10d ago against content hash d0271c6c5dab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

domain-yolo scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

templates/skills/domain-yolo/SKILL.md · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

YOLO — Verified Gotchas

YOLO26 — Current Default

YOLO26 is NMS-free end-to-end (no NMS post-processing step), drops DFL, and delivers ~43% faster CPU inference. Same Ultralytics API — change the .pt file. Prefer it for new projects, especially CPU/edge deployment.

YOLO11 vs YOLOv8

YOLO11: higher mAP than v8m with 22% fewer params. Refined C3k2 blocks. Drop-in replacement — change .pt file, code identical. Same Ultralytics API.

YOLOv10 — Legacy NMS-Free

YOLOv10 pioneered NMS-free inference, but its headline "1.8x faster" figure is vs an RT-DETR-R18 baseline, not vs other YOLOs. Superseded by YOLO26 for the NMS-free niche.

Zero-Shot: YOLOE Supersedes YOLO-World

YOLOE covers text prompts, visual prompts, AND a prompt-free mode at real-time speed. Reach for YOLO-World only if a dependency pins it.

predict(source=<list>) — List Length IS the Batch, batch= Is Ignored

Passing a list of image paths to model.predict(source=...) runs one forward pass with the list length as the batch dimension — the batch= kwarg has no effect on a list source, it does not sub-divide it. A 128-path list at high resolution becomes a single huge (128, 3, H, W) allocation and can OOM the GPU; the failing allocation size stays invariant no matter what else you tune (TTA, model count), because the batch never actually changes.

  • WRONG: model.predict(source=all_128_paths, batch=1) # runs ONE batch-128 forward → OOM
  • RIGHT: for sub in chunks(paths, 8): model.predict(source=sub) # batch bounded to 8

Verified Gotcha — Matching Shapes ≠ Same Model

When picking a source model to convert/requantize into a new precision variant, don't infer "same model" from matching input shape or overlapping backbone conv-layer shapes alone. A single-class fine-tune and the 80-class COCO base model of the same YOLO family (same width/depth, same input resolution) share nearly identical backbones — dozens of conv layers will have IDENTICAL shapes in both — because only the detection head's final output channel count differs (e.g. [1, 5, N] = 4 bbox coords + 1 class score, vs [1, 84, N] = 4 bbox coords + 80 class scores). Trusting partial shape matches can pick the WRONG source file — architecturally similar but a different model (different class count / task).

Read the full file on GitHub · 56 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 56 lines · 10 tokens per session scan A d0271c6c5dab

Subscribe to this mod's changes

domain-yolo is a skill published in the GitHub repository AxGord/claude-workflow (5 stars, last pushed 1mo ago), licensed MIT. It adds 10 tokens to every session and 882 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens

training-check

Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.

wanshuiyin/Auto-claude-code-research-in-sleep · 35 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens