yolo-detection-2026-openvino

yolo-detection-2026-openvino is a skill for Claude Code, Codex from SharpAI/DeepCamera. It costs 30 tokens per session (1,529 once invoked), scanned A, original, MIT.

A Docker-based system for detecting objects in images or video frames in real time. OpenVINO is Intel's software for running machine-learning models, using an Intel accelerator when available or the computer's processor otherwise.

In plain words
What is it for?
Processing frames with an OpenVINO model and returning detected objects as JSON lines from a Docker container.
Why use it?
It provides a defined way to run object detection across different computers and Intel devices.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Processing frames with an OpenVINO model and returning detected objects as JSON lines from a Docker container.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sharpai/deepcamera/yolo-detection-2026-openvino
About the project

SharpAI/DeepCamera is an open-source camera platform that analyzes surveillance video locally with vision-language models, object detection, and related AI skills. It is for home and CCTV monitoring, and its catalogue skills add pluggable camera capabilities to the platform.

SharpAI/DeepCamera · 3,047 stars · on GitHub · sharpai.org

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 SharpAI/DeepCamera --skill yolo-detection-2026-openvino
Clone the repo
git clone --depth 1 https://github.com/SharpAI/DeepCamera

Made for: Claude Code, Codex.

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 yolo-detection-2026-openvino

README.md
[![agentmods](https://agentmods.dev/badge/skills/sharpai/deepcamera/yolo-detection-2026-openvino.svg)](https://agentmods.dev/skills/sharpai/deepcamera/yolo-detection-2026-openvino)
Your own site
<a href="https://agentmods.dev/skills/sharpai/deepcamera/yolo-detection-2026-openvino"><img src="https://agentmods.dev/badge/skills/sharpai/deepcamera/yolo-detection-2026-openvino.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,529 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00030 $0.01529
Opus 5 $0.00015 $0.00764
Sonnet 5 $0.00006 $0.00306
Haiku 4.5 $0.00003 $0.00153

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

Security

Grade A, and why

yolo-detection-2026-openvino 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 9d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (deploy.bat, deploy.sh, scripts/compile_model_colab.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/detection/yolo-detection-2026-openvino/SKILL.md · 177 lines

How it starts

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

OpenVINO Object Detection

Real-time object detection using Intel OpenVINO runtime. Runs inside Docker for cross-platform support. Supports Intel NCS2 USB stick, Intel integrated GPU, Intel Arc discrete GPU, and any x86_64 CPU.

Requirements

  • Docker Desktop 4.35+ (all platforms)
  • Optional hardware: Intel NCS2 USB, Intel iGPU, Intel Arc GPU
  • Falls back to CPU if no accelerator present

How It Works

┌─────────────────────────────────────────────────────┐
│ Host (Aegis-AI)                                     │
│   frame.jpg → /tmp/aegis_detection/                 │
│   stdin  ──→ ┌──────────────────────────────┐       │
│              │ Docker Container              │       │
│              │   detect.py                   │       │
│              │   ├─ loads OpenVINO IR model   │       │
│              │   ├─ reads frame from volume   │       │
│              │   └─ runs inference on device  │       │
│   stdout ←── │   → JSONL detections          │       │
│              └──────────────────────────────┘       │
│   USB ──→ /dev/bus/usb (NCS2)                       │
│   DRI ──→ /dev/dri (Intel GPU)                      │
└─────────────────────────────────────────────────────┘
  1. Aegis writes camera frame JPEG to shared /tmp/aegis_detection/ volume
  2. Sends frame event via stdin JSONL to Docker container
  3. detect.py reads frame, runs inference via OpenVINO
  4. Returns detections event via stdout JSONL
  5. Same protocol as yolo-detection-2026 — Aegis sees no difference

Platform Setup

Linux

# Intel GPU and NCS2 auto-detected via /dev/dri and /dev/bus/usb
# Docker uses --device flags for direct device access
./deploy.sh

macOS (Docker Desktop 4.35+)

# Docker Desktop USB/IP handles NCS2 passthrough
# CPU fallback always available
./deploy.sh

Windows

# Docker Desktop 4.35+ with USB/IP support
# Or WSL2 backend with usbipd-win for NCS2
.\deploy.bat

Model

Ships without a pre-compiled model by default. On first run, detect.py will auto-download yolo26n.pt and export to OpenVINO IR format. To pre-export:

Read the full file on GitHub · 177 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. 9d ago First seen · 177 lines · 30 tokens per session scan A 975970dab60e

Subscribe to this mod's changes

yolo-detection-2026-openvino is a skill published in the GitHub repository SharpAI/DeepCamera (3,047 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 1,529 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

physicsnemo-shard-tensor

Official NVIDIA-authored guidance for PhysicsNeMo ShardTensor domain parallelism — integrate domain parallelism into training/inference scripts (new or existing) with DDP or FSDP2, write and register shard patches to enable new layers/ops, and bootstrap multi-GPU correctness tests. Use when working with ShardTensor…

NVIDIA/physicsnemo · 152 tokens

physicsnemo-discover

Official NVIDIA-authored guidance for navigating PhysicsNeMo — pick the model, datapipe, or example for a SciML/AI4Science task (surrogates, forecasting, downscaling, physics-informed, inverse, generative). Points at existing files via live repo search; never writes code. Do NOT use for installation or environment…

NVIDIA/physicsnemo · 124 tokens

perforatedai

Expert in PerforatedAI library for adding artificial dendrites to PyTorch neural networks. Triggers: 'Perforate my model' (start interactive setup), 'debug my perforated model' (debug/optimize existing integration), 'load my perforated model for inference' (deploy trained models). Also use when: debugging dendrite…

PerforatedAI/PerforatedAI · 115 tokens

perforatedai-analyze

Analyze PerforatedAI training results and provide optimization recommendations. Trigger: 'Analyze my perforated results' (after training completes). Reviews CSV outputs, identifies performance patterns, recommends configuration improvements. For initial setup or debugging, use the perforatedai skill instead.

PerforatedAI/PerforatedAI · 59 tokens

perforatedai-distributed

Multi-GPU setup for PerforatedAI with DataParallel or DistributedDataParallel (DDP). Invoked automatically by the perforatedai skill when multi-GPU training is detected. Handles initialization workflow, checkpoint loading, rank 0 handling, and shell script generation for DDP.

PerforatedAI/PerforatedAI · 64 tokens

perforatedai-libraries-transformers

HuggingFace Transformers integration for PerforatedAI. Handles the Trainer-specific differences: usingperforatedai=True, GPA.metric, evalstrategy. Use when the user's script uses HuggingFace Trainer.

PerforatedAI/PerforatedAI · 51 tokens