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.
npx agentmods add commands/ruvnet/ruview/ruview-provisiongit clone --depth 1 https://github.com/ruvnet/RuViewWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00023 | $0.00684 |
| Opus 5 | $0.00012 | $0.00342 |
| Sonnet 5 | $0.00005 | $0.00137 |
| Haiku 4.5 | $0.00002 | $0.00068 |
Grade A, and why
ruview-provision 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 today.
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.
What it actually says
/ruview-provision
Write NVS config to an ESP32 sensing node.
- Invoke the
ruview-configureskill (§"Runtime device config" — has the fullprovision.pyflag table). - Run
python firmware/esp32-csi-node/provision.py --helpfor the authoritative options (on Windows:PYTHONUTF8=1 PYTHONIOENCODING=utf-8 python …— the help text has non-ASCII). Collect any missing params (port — default COM8, SSID, password, target sink IP,--target-portdefault 5005,--node-id). - Run:
python firmware/esp32-csi-node/provision.py --port <PORT> \ --ssid "<SSID>" --password "<PW>" --target-ip <IP> --target-port 5005 --node-id <0-255> \ [--channel <N>] [--filter-mac <MAC>] [--hop-channels 1,6,11 --hop-dwell 200] \ [--tdm-slot <i> --tdm-total <n>] [--edge-tier {0|1|2}] [--pres-thresh 50] [--fall-thresh 15000] \ [--vital-win 300] [--vital-int 1000] [--subk-count 32] \ [--seed-url http://… --seed-token … --zone lobby] [--swarm-hb 30] [--swarm-ingest 5] [--dry-run] - Explain trade-offs:
--channelpins the node (AP's channel) vs.--hop-channelsfor ADR-061 multi-freq hopping;--filter-macrestricts to one transmitter vs. omit for all (more data, more noise);--edge-tier0/1/2 = off/stats/vitals;--tdm-slot/--tdm-totalslot a multi-node mesh. - ⚠️ Issue #391: flashing rewrites the entire
csi_cfgNVS namespace — every key not on the CLI is erased. Pass the full set you want; warn the user before re-provisioning a working node.--force-partialbypasses the WiFi-creds requirement (knowingly).--dry-runbuilds the NVS binary without flashing. - Fleet provisioning:
scripts/generate_nvs_matrix.py(subprocess-first). - Verify: serial monitor (pyserial on the port, 115200) should show
adaptive_ctrlticks +csi_collector: CSI cb #… len=128 …lines; the sink (cd v2 && cargo run -p wifi-densepose-sensing-server) should report incoming UDP frames if--target-ippoints at this host.
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.
- today First seen · 25 lines · 23 tokens per session scan A 15d7c2da666e
ruview-provision is a command published in the GitHub repository ruvnet/RuView (92,406 stars, last pushed today), licensed MIT. It adds 23 tokens to every session and 684 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-09-03.
Other commands, from other repositories
add-ha-entity
Step-by-step guide to add a new Home Assistant entity with MQTT auto-discovery.
flash-size
Analyze firmware binary size and partition layout in detail.
expert_rmt5
ESP-IDF v5.x RMT5 API expert for LED protocols, encoders, and multi-channel control.
aurora
Aurora - independent community smart home orchestrator. Routes any smart home request to the right specialist skill and recommends the correct Claude model. Use this as your starting point for Home Assistant, ESPHome, Node-RED, or any IoT automation task.
hardware-specs
Read this before writing any code that touches peripherals, memory, Wi-Fi, camera, or audio. All GPIO and address numbers below are verified against the vendor BSP (ref/demo/ESP32-S3-CAM-OVxxxx/examples/ESP-IDF-v5.5.1/04dvpcameradisplay/components/waveshareesp32s3camovxxxx/include/bsp/esp32s3camovxxxx.h) and this…
monitor
Command "monitor" from chayuto/ws-ESP32-S3-CAM, covering read serial output from the board, fix 1 — stty -hupcl + dd (works reliably), fix 2 — pyserial but set dtr/rts before open, optional: pulse rts only to reset without touching dtr and healthy read (once the dtr trap is avoided).