raw-fpv-visual-labeler

raw-fpv-visual-labeler is a skill for Claude Code, Codex from MiaoDX/roboclaws. It costs 27 tokens per session (523 once invoked), scanned A, original, MIT.

A perception-only workflow for labeling movable objects visible in robot first-person camera frames.

In plain words
What is it for?
Marking object categories, regions, confidence, and cleanup relevance across nearby robot camera frames.
Why use it?
It creates structured labels for review without allowing those labels to trigger movement, picking, placing, or cleanup actions.

Skill for Claude CodeCodex

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

Good fit Marking object categories, regions, confidence, and cleanup relevance across nearby robot camera frames.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/miaodx/roboclaws/raw-fpv-visual-labeler
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 MiaoDX/roboclaws --skill raw-fpv-visual-labeler
Clone the repo
git clone --depth 1 https://github.com/MiaoDX/roboclaws

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 raw-fpv-visual-labeler

README.md
[![agentmods](https://agentmods.dev/badge/skills/miaodx/roboclaws/raw-fpv-visual-labeler/github.svg)](https://agentmods.dev/skills/miaodx/roboclaws/raw-fpv-visual-labeler)
Your own site
<a href="https://agentmods.dev/skills/miaodx/roboclaws/raw-fpv-visual-labeler"><img src="https://agentmods.dev/badge/skills/miaodx/roboclaws/raw-fpv-visual-labeler/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 raw-fpv-visual-labeler

Your own site · 80×15
<a href="https://agentmods.dev/skills/miaodx/roboclaws/raw-fpv-visual-labeler"><img src="https://agentmods.dev/badge/skills/miaodx/roboclaws/raw-fpv-visual-labeler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 523 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.00027 $0.00523
Opus 5 $0.00014 $0.00262
Sonnet 5 $0.00005 $0.00105
Haiku 4.5 $0.00003 $0.00052

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

Security

Grade A, and why

raw-fpv-visual-labeler 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.

skills/raw-fpv-visual-labeler/SKILL.md · 75 lines

How it starts

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

RAW-FPV Visual Labeler

Use this skill only for perception-only RAW-FPV labeling probes. It consumes public robot FPV frame evidence and emits structured visual labels for review and offline scoring. It does not call cleanup tools, does not create observed_* handles, and does not authorize navigation, pick, place, or done.

Inputs

Use 3-6 neighboring RAW-FPV frames from the same waypoint, sweep segment, or source observation neighborhood when available. Each frame may include only:

  • public frame id;
  • image artifact;
  • public waypoint or room context already visible to the cleanup agent;
  • optional public runtime-map planning hints marked non-executable.

Never include private labels, generated hidden target ids, acceptable destination truth, executable observed-object handles, detector candidates, or camera-label producer candidates.

Output

Return strict JSON:

{
  "schema": "raw_fpv_visual_labeler_response_v1",
  "labels": [
    {
      "evidence_frame_id": "run/raw_fpv_001",
      "category": "mug",
      "category_family": "dish",
      "coarse_region": "middle_right",
      "confidence": 0.82,
      "is_cleanup_relevant": true,
      "bbox": [0.62, 0.5, 0.12, 0.15],
      "surface_hint": "table",
      "reason_not_actionable": ""
    }
  ]
}

Required per label:

  • evidence_frame_id
  • category
  • category_family
  • coarse_region
  • confidence
  • is_cleanup_relevant

Optional per label:

  • bbox
  • surface_hint
  • reason_not_actionable

Allowed category families are food, dish, book, linen, toy, and electronics. Fixtures and surfaces such as tables, beds, counters, shelves, sinks, cabinets, and floors may be mentioned only as surface_hint or as is_cleanup_relevant=false; they are not object hits.

Boundary

These labels are perception evidence. The cleanup agent must not consume them as executable handles in camera-raw-fpv. A later assisted RAW-FPV or camera-grounded-labels producer decision would need its own contract change.

Read the full file on GitHub · 75 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 75 lines · 27 tokens per session scan A d84da871bfc0

Subscribe to this mod's changes

raw-fpv-visual-labeler is a skill published in the GitHub repository MiaoDX/roboclaws (6 stars, last pushed 7d ago), licensed MIT. It adds 27 tokens to every session and 523 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

droidrun-agent

DroidRun Portal HTTP/WebSocket/MCP client. Controls Android devices via HTTP, WebSocket, or MCP server, supporting tap, swipe, screenshot, text input, UI state retrieval and more. Use this skill when the user needs to interact with an Android device running DroidRun Portal.

hanxi/droidrun-agent · 63 tokens

openhue

Control Philips Hue lights, rooms, and scenes via the OpenHue CLI. Turn lights on/off, adjust brightness, color, color temperature, and activate scenes.

moltis-org/moltis · 35 tokens

unifi-protect

How to manage UniFi Protect cameras and NVR — view cameras, smart detections, Find Anything detection search, recordings, snapshots, lights, sensors, Known Faces, license plates, and the Alarm Manager. Use this skill when the user mentions UniFi cameras, security cameras, NVR, recordings, motion detection, person…

sirkirby/unifi-mcp · 112 tokens

unifi-access

How to manage UniFi Access door control — locks, credentials, visitors, access policies, and events. Use this skill when the user mentions UniFi Access, door locks, door access, building access, NFC cards, PIN codes, visitor passes, access policies, access schedules, door readers, or any UniFi Access task.

sirkirby/unifi-mcp · 70 tokens

network-health-check

Run a UniFi network health check — diagnose device status, connectivity issues, firmware updates, and system health. Use when asked to check network health, find what's down, diagnose connectivity issues, or get a network status summary.

sirkirby/unifi-mcp · 49 tokens

blucli

BluOS CLI (blu) for discovery, playback, grouping, and volume.

moltis-org/moltis · 19 tokens