yolo-detection-2026-coral-tpu-win-wsl

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

A guide for running real-time object detection with a Google Coral Edge TPU, a small hardware accelerator, through WSL2, Linux running inside Windows.

In plain words
What is it for?
Use it to detect 80 common object categories in images or camera frames when a Coral USB Accelerator, WSL2, and usbipd-win are available.
Why use it?
It allows Windows-based software to use the Coral device for local image analysis and receive detections as structured JSON output.

Skill for Claude CodeCodex

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

Good fit Use it to detect 80 common object categories in images or camera frames when a Coral USB Accelerator, WSL2, and usbipd-win are available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl
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,051 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-coral-tpu-win-wsl
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-coral-tpu-win-wsl

README.md
[![agentmods](https://agentmods.dev/badge/skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl/github.svg)](https://agentmods.dev/skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl)
Your own site
<a href="https://agentmods.dev/skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl"><img src="https://agentmods.dev/badge/skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl/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 yolo-detection-2026-coral-tpu-win-wsl

Your own site · 80×15
<a href="https://agentmods.dev/skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl"><img src="https://agentmods.dev/badge/skills/sharpai/deepcamera/yolo-detection-2026-coral-tpu-win-wsl.svg" alt="Reviewed on agentmods" width="80" 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,144 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.01144
Opus 5 $0.00015 $0.00572
Sonnet 5 $0.00006 $0.00229
Haiku 4.5 $0.00003 $0.00114

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

Security

Grade A, and why

yolo-detection-2026-coral-tpu-win-wsl 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 11d ago.

The scan reads SKILL.md. This mod also ships 10 executable files (deploy.bat, docker/compile.sh, install_usbipd.bat, …), 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-coral-tpu-win-wsl/SKILL.md · 131 lines

How it starts

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

Coral TPU Object Detection (Windows WSL)

Real-time object detection natively utilizing the Google Coral Edge TPU accelerator on your local hardware via Windows Subsystem for Linux (WSL). Detects 80 COCO classes (person, car, dog, cat, etc.) with ~4ms inference on 320x320 input.

Requirements

  • Google Coral USB Accelerator (USB 3.0 port recommended)
  • WSL2 installed and running on Windows
  • usbipd-win installed on the Windows host

How It Works

┌─────────────────────────────────────────────────────┐
│ Host (Aegis-AI on Windows)                          │
│   frame.jpg → /tmp/aegis_detection/                 │
│   stdin  ──→ ┌──────────────────────────────┐       │
│              │ WSL Container / Environment   │       │
│              │   detect.py                   │       │
│              │   ├─ loads _edgetpu.tflite     │       │
│              │   ├─ reads frame from disk     │       │
│              │   └─ runs inference on TPU    │       │
│   stdout ←── │   → JSONL detections          │       │
│              └──────────────────────────────┘       │
│   USB ──→ usbipd-win bridge to WSL                  │
└─────────────────────────────────────────────────────┘
  1. Aegis writes camera frame JPEG to shared /tmp/aegis_detection/ workspace
  2. Sends frame event via stdin JSONL to the WSL Python instance
  3. detect.py invokes PyCoral and executes natively on the mapped USB Edge TPU inside Linux
  4. Returns detections event via stdout JSONL back to Windows Host

Performance

Input Size Inference On-chip Notes
320x320 ~4ms 100% Fully on TPU, best for real-time
640x640 ~20ms Partial Some layers on CPU (model segmented)

Cooling: The USB Accelerator aluminum case acts as a heatsink. If too hot to touch during continuous inference, it will thermal-throttle. Consider active cooling or clock_speed: standard.

Installation

Windows (WSL)

Run deploy.bat — this will:

  1. Verify usbipd is installed and bind the 18d1:9302 and 1a6e:089a Edge TPU hardware IDs.
  2. Setup a Python virtual environment exclusively within WSL.
  3. Install the Edge TPU libraries and dependencies within the WSL boundary.
  4. Auto-attach the device using usbipd seamlessly during invocation.

Read the full file on GitHub · 131 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. 11d ago First seen · 131 lines · 30 tokens per session scan A 3fc7cb30459b

Subscribe to this mod's changes

yolo-detection-2026-coral-tpu-win-wsl is a skill published in the GitHub repository SharpAI/DeepCamera (3,051 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 1,144 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

flow-nexus-neural

Train and deploy neural networks in distributed E2B sandboxes with Flow Nexus.

ruvnet/ruflo · 21 tokens

developing-with-streamlit

Use for ALL Streamlit tasks: creating, editing, debugging, beautifying, styling, theming, optimizing, or deploying Streamlit apps. Also custom components, st.components.v2, HTML/JS/CSS work. Discovers and loads version-matched reference docs from the user's installed Streamlit (>=1.57). Triggers: streamlit, st.…

streamlit/streamlit · 128 tokens

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

lepton-cli

Operate NVIDIA DGX Cloud Lepton through the globally installed lep CLI. Use when the user asks to inspect or manage Lepton workspaces, endpoints/deployments, dev pods, batch jobs, fine-tuning jobs, Ray clusters, Slurm clusters, Dynamo endpoints, storage, secrets, nodes, ingress, templates, logs, authentication, or…

leptonai/leptonai · 122 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