mirror of
https://github.com/ruvnet/RuView
synced 2026-06-09 10:13:17 +00:00
8ff7c2c35a
Add `plugins/ruview` — an end-to-end toolkit for working with RuView (WiFi-DensePose) from Claude Code, mirrored as Codex prompts. Marketplace: `plugins/.claude-plugin/marketplace.json` (one plugin, `ruview`). Skills (9): ruview-quickstart, ruview-hardware-setup, ruview-configure, ruview-applications, ruview-model-training, ruview-advanced-sensing, ruview-cli-api, ruview-mmwave, ruview-verify — shell-first (cargo / python / idf.py / docker / node), no claude-flow MCP dependency. Commands (7): /ruview-start, /ruview-flash, /ruview-provision, /ruview-app, /ruview-train, /ruview-advanced, /ruview-verify. Agents (3): ruview-onboarding-guide, ruview-config-engineer, ruview-training-engineer. Codex mirror: codex/AGENTS.md + codex/README.md + codex/prompts/*.md (full command parity, enforced by scripts/smoke.sh). Docs: docs/adrs/0001-ruview-plugin-contract.md (Proposed). Verification: scripts/smoke.sh (13 structural checks). Provisioning docs reflect the full `provision.py` flag set (TDM mesh, edge tiers, vitals, hop channels, Cognitum Seed, swarm intervals) and the issue #391 NVS-namespace-replace gotcha. Verified: `claude plugin validate` (plugin + marketplace), loads via `claude --plugin-dir`, smoke 13/13, and confirmed against an attached ESP32-S3 on COM8 running the RuView CSI firmware (live adaptive_ctrl + csi_collector serial output). Co-Authored-By: claude-flow <ruv@ruv.net>
1.2 KiB
1.2 KiB
description, argument-hint
| description | argument-hint |
|---|---|
| Verify a RuView build — Rust tests, deterministic Python proof, firmware hashes, ADR-028 witness bundle + self-verification, and the pre-merge checklist. | [tests|proof|bundle|all] |
/ruview-verify
Run RuView's trust pipeline.
- Invoke the
ruview-verifyskill. - Based on
$ARGUMENTS(defaultall):- tests —
cd v2 && cargo test --workspace --no-default-features(1,400+ pass, 0 fail). - proof —
python archive/v1/data/proof/verify.py(must printVERDICT: PASS; if hash drift from a legit numpy/scipy bump,--generate-hashthen re-run). Optionallycd archive/v1 && python -m pytest tests/ -x -q. - bundle —
bash scripts/generate-witness-bundle.sh, thencd dist/witness-bundle-ADR028-*/ && bash VERIFY.sh(must be 7/7 PASS). - all — do all of the above in order.
- tests —
- If this follows a code change, walk the pre-merge checklist from
CLAUDE.md(README/CLAUDE.md/CHANGELOG/user-guide updates, ADR count, witness bundle regen, Docker rebuild only if needed, crate publishing in dependency order,.gitignore, security review for hardware/network modules). - For security-related changes also run
npx @claude-flow/cli@latest security scan.