ruview-rvagent

ruview-rvagent is a skill for Claude Code, Codex from ruvnet/RuView. It costs 61 tokens per session (1,029 once invoked), scanned A, original, MIT.

An integration layer for connecting RuView sensor data with rvAgent, an agent system that can read events and keep state alongside them. It exposes room presence, breathing, heart-rate, and other sensing data to an agent.

In plain words
What is it for?
Use it to build agents that react to presence, body-position, breathing, or heart-rate events, coordinate tasks, and store agent state with sensing data.
Why use it?
It removes the need to connect the sensing pipeline and agent workflow by hand. Agents can read live or historical sensor information in one place.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions Claude Code.

Part of the ruview plugin — 10 skills, 7 commands, 3 agents shipped together

Good fit Use it to build agents that react to presence, body-position, breathing, or heart-rate events, coordinate tasks, and store agent state with sensing data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ruvnet/ruview/ruview-rvagent
About the project

RuView is a WiFi sensing platform that uses disturbances in radio signals, captured by low-cost ESP32 sensors, to detect presence, movement, breathing, and heart rate without cameras or wearables. It is intended for spatial monitoring and smart-home integrations. The catalogue add-ons support workflows for operating and integrating RuView.

ruvnet/RuView · 92,661 stars · on GitHub · cognitum.one

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 ruvnet/RuView --skill ruview-rvagent
Clone the repo
git clone --depth 1 https://github.com/ruvnet/RuView

Made for: Claude Code, Codex.

Or install ruview, the plugin that ships this one along with the rest of its 10 skills, 7 commands, 3 agents.

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 ruview-rvagent

README.md
[![agentmods](https://agentmods.dev/badge/skills/ruvnet/ruview/ruview-rvagent.svg)](https://agentmods.dev/skills/ruvnet/ruview/ruview-rvagent)
Your own site
<a href="https://agentmods.dev/skills/ruvnet/ruview/ruview-rvagent"><img src="https://agentmods.dev/badge/skills/ruvnet/ruview/ruview-rvagent.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,029 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
  • Snyk 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.00061 $0.01029
Opus 5 $0.00030 $0.00515
Sonnet 5 $0.00012 $0.00206
Haiku 4.5 $0.00006 $0.00103

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

Security

Grade A, and why

ruview-rvagent 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 3d 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.

plugins/ruview/skills/ruview-rvagent/SKILL.md · 67 lines

How it starts

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

RuView rvAgent + RVF integration

Surface area for wiring vendor/ruvector/crates/rvAgent/ into RuView so the existing sensing pipeline becomes the substrate an agentic flow can read, reason about, and respond to.

Quickstart — published MCP server (@ruvnet/rvagent v0.1.0)

Installing this plugin registers @ruvnet/rvagent as an MCP server. On activation, Claude Code spawns npx -y @ruvnet/rvagent and exposes its tools directly:

Tool Purpose
bfld_last_scan Most recent BFLD event from the sensing server
bfld_subscribe Stream BFLD events for a window
presence_now Current room-level presence state
vitals_get_breathing Latest breathing-rate sample
vitals_get_heart_rate Latest heart-rate sample
vitals_get_all Composite vitals snapshot
vitals_fetch Historical vitals window

Override the sensing-server URL via the RVAGENT_SENSING_URL env var (default http://localhost:3000). Source lives at tools/ruview-mcp/; ADR-124 captures the design.

Smoke-check the wiring: npm view @ruvnet/rvagent version should return 0.1.0 (or newer).

When to use this skill

  • "I want an agent that reacts to BFLD presence in the kitchen and pages the carer."
  • "I need cog-pose-estimation and cog-bfld to negotiate before publishing a synthesized event."
  • "Can the witness chain attest both the sensing event AND the agent decision in one RVF blob?"
  • "How do we keep rvAgent's tool outputs class-3 compliant when the source BFLD event is Restricted?"

Key surfaces

Surface File Notes
rvAgent core vendor/ruvector/crates/rvAgent/rvagent-core/src/agi_container.rs (627 LOC) RVF-compatible state container
rvAgent middleware vendor/ruvector/crates/rvAgent/rvagent-middleware/ Witness, sanitizer, SONA, HNSW
Agent personas vendor/ruvector/crates/rvAgent/.ruv/agents/rvagent-{queen,coder,tester,security}.md Reference patterns
RVF container v2/crates/wifi-densepose-sensing-server/src/rvf_container.rs Add SEG_AGENT_STATE, SEG_DECISION
BFLD event v2/crates/wifi-densepose-bfld/src/event.rs BfldEvent::to_json()ToolOutput
BFLD pipeline handle v2/crates/wifi-densepose-bfld/src/pipeline_handle.rs BfldPipelineHandle::send

Read the full file on GitHub · 67 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. 3d ago First seen · 67 lines · 61 tokens per session scan A 153cf8a6601a

Subscribe to this mod's changes

ruview-rvagent is a skill published in the GitHub repository ruvnet/RuView (92,661 stars, last pushed today), licensed MIT. It adds 61 tokens to every session and 1,029 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

meraki-wireless-ops

Cisco Meraki wireless (read-only) — SSID configuration, RF profiles, Air Marshal, channel utilization, signal quality, client connectivity events via Cisco's official Meraki MCP. Use when inspecting Meraki SSIDs, auditing RF configuration, or investigating WiFi connectivity.

automateyournetwork/netclaw · 60 tokens

conducting-wireless-network-penetration-test

Conducts authorized wireless network penetration tests to assess the security of WiFi infrastructure by testing for weak encryption protocols, captive portal bypasses, evil twin attacks, WPA2/WPA3 handshake capture, rogue access point detection, and client-side attacks. The tester evaluates wireless authentication…

26zl/cybersec-toolkit · 104 tokens

beu1000-evuba

A hardware-specific guide for writing firmware for the BE-U1000, a RISC-V microcontroller, on Baikal Electronics EVU-BA development boards. It documents the chip, board wiring, SDK, build setup, and built-in peripherals.

alexex1993/mcu-skills · 289 tokens

atmega32u4-beetle

Firmware development for the Beetle — the CJMCU / DFRobot "Mini Arduino Leonardo" USB board (ATmega32U4 @ 16 MHz, 5 V, 21×28 mm, castellated pads) — its native USB (CDC serial + HID keyboard/mouse/joystick), Caterina bootloader and 1200 bps touch upload, ten exposed I/O pads, four PWM pins across Timer0/Timer1, five…

alexex1993/mcu-skills · 0 tokens

esp32s3-cam-40pin

Firmware development for the 40-pin ESP32-S3-WROOM-1 camera board — the Freenove ESP32-S3-WROOM (FNK0085) and the AliExpress "ESP32-S3 CAM" / "ESP32-S3-WROOM N16R8 CAM" clones that copy its header: 20 pins a side, a 24-pin DVP camera FPC connector for an OV2640/OV3660, an on-board microSD slot on the SDMMC bus, a…

alexex1993/mcu-skills · 0 tokens

esp32-wroom-30pin

Firmware development for the 30-pin ESP32-WROOM-32 development board — the DOIT ESP32 DevKit V1 / ESP32 CH340 Type-C / NodeMCU-ESP32 30-pin form factor, 15 pins per side, CH340G or CP2102 USB-UART bridge, AMS1117 LDO, user LED on GPIO2. Use when working on a 30-pin ESP32 devkit (ESP32-D0WDQ6 / ESP32-D0WD-V3…

alexex1993/mcu-skills · 0 tokens