mirror of
https://github.com/ruvnet/RuView
synced 2026-07-05 14:33:19 +00:00
4001e9e178
A host-portable RuView agent harness minted via MetaHarness and hardened per ADR-182. Published as @ruvnet/ruview@0.1.0 (bare `ruview` blocked by npm's typosquat filter → scoped fallback). What it does: - 6 fail-closed `ruview.*` tools (onboard, claim_check, verify, node_monitor, calibrate, node_flash) exposed as CLI verbs + a dependency-free MCP stdio server. - The "prove everything" rule made executable: `ruview.claim_check` flags untagged accuracy claims and the retracted "100%" framing. - 5 host-neutral skills (onboard/provision-node/calibrate-room/ train-pose/verify) + bundled .claude/ config + provenance manifest. Validated: 17/17 unit tests, live MCP handshake, `ruview.verify` ran the real verify.py to VERDICT: PASS, clean `npx @ruvnet/ruview` from registry. Packs to 16.7 kB / 21 files; kernel+host are optionalDependencies so the operator tools install lightweight. README: documented as the portable, multi-host companion to the in-repo plugins/ruview/ Claude Code plugin (not a replacement).
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@ruvnet/ruview",
|
|
"version": "0.1.0",
|
|
"description": "RuView WiFi-sensing operator agent harness — onboard, calibrate, train, and verify camera-free WiFi-CSI sensing, with the project's MEASURED-vs-CLAIMED honesty guardrail enforced. Minted via metaharness (ADR-182).",
|
|
"type": "module",
|
|
"bin": {
|
|
"ruview": "bin/cli.js"
|
|
},
|
|
"exports": {
|
|
".": "./src/tools.js",
|
|
"./guardrails": "./src/guardrails.js"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"src/",
|
|
"skills/",
|
|
".claude/",
|
|
".harness/",
|
|
"CLAUDE.md",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"test": "node --test test/*.test.mjs",
|
|
"doctor": "node ./bin/cli.js doctor",
|
|
"mcp": "node ./bin/cli.js mcp start"
|
|
},
|
|
"optionalDependencies": {
|
|
"@metaharness/kernel": "^0.1.0",
|
|
"@metaharness/host-claude-code": "^0.1.0"
|
|
},
|
|
"keywords": [
|
|
"wifi-sensing",
|
|
"wifi-densepose",
|
|
"ruview",
|
|
"csi",
|
|
"channel-state-information",
|
|
"pose-estimation",
|
|
"presence-detection",
|
|
"esp32",
|
|
"agent-harness",
|
|
"metaharness",
|
|
"mcp",
|
|
"mcp-server",
|
|
"claude-code",
|
|
"ambient-intelligence"
|
|
],
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"license": "MIT",
|
|
"author": "ruvnet",
|
|
"homepage": "https://github.com/ruvnet/RuView#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ruvnet/RuView.git",
|
|
"directory": "harness/ruview"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/RuView/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|