ruview @ v1107
integrity
- size
- 55.6 MiB
- downloaded
- last checked
release notes
Automated release from CI pipeline
Changes: adr-113: multistatic placement strategy — consolidates 9-tick R6 family into decision matrix (#734)
Amends ADR-029 (RuvSense multistatic). Consolidates the SOTA research loop's 9-tick R6 family into a single 4-axis decision matrix (dimension x zone-mode x occupants x cog).
Decision matrix highlights:
- 2D vital-signs cogs: chest-centric, N=5, walls 0.8/1.5 m -> 100%
- 3D vital-signs cogs: chest-centric, N=6, NO ceiling -> 82%
- 2D pose cogs: body, N=5, walls mixed -> 97%
- 3D pose cogs: body, N=7-8, mixed L/M/H -> 65%+
- Person count: body, N=4, walls mixed -> 86%
- Presence only: body, N=3, walls low -> 63%
- Maritime cabin: chest, N=4, low -> 80%+
- Wildlife corridor: linear, N=4, tree-mount -> 70%+
Seven binding rules extracted from R6 family:
- Ceiling-only mounting fails (R6.2.1)
- Vertical link diversity wins in 3D (R6.2.1)
- Anchor heights match target zone heights (R6.2.4)
- Chest-centric beats body for vital signs (R6.2.3)
- Multi-subject union is the right target (R6.2.5)
- N=5 is the consumer recommendation (R6.2.2 + R6.2.5)
- Avoid placing target zones on LOS line (R6.1)
CLI productisation: wifi-densepose plan-antennas --room W H [Z] --target ... --target-mode {body,chest} --freq-ghz F --n-anchors N --cog NAME
MCP tool: ruview_placement_recommend(room, targets, cog) -> {anchors, coverage, rationale}
~360 LOC total for placement-strategy productisation.
Per-cog auto-config (the --cog flag looks up):
- cog-presence: body, 3
- cog-person-count: body, 4
- cog-pose-estimation: body, 5 (2D) / 7 (3D)
- cog-vital-signs / breathing / heart-rate: CHEST, 5/6
- cog-intruder: body, 5
- cog-maritime-watch: chest, 4
- cog-wildlife: linear, 4
The R6 family produced 9 ticks of physics + simulation, each adding 1-2 axes to the placement question. ADR-113 collapses all 9 into a single decision matrix that a non-physicist installer can use.
Composes:
- R6.2 family (9 ticks) all feed this ADR
- R7 mincut: N >= 4 satisfied for all multi-feature cogs
- R10/R11 wildlife/maritime entries in matrix
- R12 PABS/R12.1: placement coverage = intrusion-detection sensitivity
- R14 V1/V2/V3 all covered
- ADR-029 directly amended
Honest scope:
- Synthetic physics; bench validation pending
- Single room geometry baseline (5x5 + 4x6 m)
- 5 cm pose-tracker noise assumed
- Free-space, no multipath/furniture occlusion
- Greedy + 4-restart search
ADR chain after this tick (loop's 6 new ADRs + 3 existing): 105/106/107/108/109/113 + 100/103/104 = 9 ADRs in the full chain (privacy + federation + provenance + placement).
Coordination: ticks/tick-31.md, no PROGRESS.md edit.
Docker Image:
ghcr.io/ruvnet/RuView:e4f93b1617cb95117dd39b96d2057271b70c7c76
download
curl -fL -o v1107.zip https://ratatoskr.space/pkg/ruview/v1107.zip
printf '%s %s\n' '3cfc30701cd49912563d28c5c545a5358f6968a532a72397bbd285157510653d' 'v1107.zip' | sha256sum -c -
$url = "https://ratatoskr.space/pkg/ruview/v1107.zip"
$out = "v1107.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3cfc30701cd49912563d28c5c545a5358f6968a532a72397bbd285157510653d") { throw "sha256 mismatch" }
curl -fL -o v1107.tar.gz https://ratatoskr.space/pkg/ruview/v1107.tar.gz
printf '%s %s\n' 'c6a9f160ca38aecd2fa72d5ec2f95d5339c4e49ea9c4284a949925f79588ea96' 'v1107.tar.gz' | sha256sum -c -
$url = "https://ratatoskr.space/pkg/ruview/v1107.tar.gz"
$out = "v1107.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c6a9f160ca38aecd2fa72d5ec2f95d5339c4e49ea9c4284a949925f79588ea96") { throw "sha256 mismatch" }
download via yggdrasil mesh
curl -fL -o v1107.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v1107.zip
printf '%s %s\n' '3cfc30701cd49912563d28c5c545a5358f6968a532a72397bbd285157510653d' 'v1107.zip' | sha256sum -c -
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v1107.zip"
$out = "v1107.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3cfc30701cd49912563d28c5c545a5358f6968a532a72397bbd285157510653d") { throw "sha256 mismatch" }
curl -fL -o v1107.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v1107.tar.gz
printf '%s %s\n' 'c6a9f160ca38aecd2fa72d5ec2f95d5339c4e49ea9c4284a949925f79588ea96' 'v1107.tar.gz' | sha256sum -c -
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v1107.tar.gz"
$out = "v1107.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c6a9f160ca38aecd2fa72d5ec2f95d5339c4e49ea9c4284a949925f79588ea96") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1107.zip | zip | 55.5 MiB |
blake3-24 dab38d0eb1b79a6165283b0fdacfbe98bbeedb58bf34cf48
sha256 3cfc30701cd49912563d28c5c545a5358f6968a532a72397bbd285157510653d
sha1 02a2e71aa54a738ac0c27fb6b4cfaecb5558a37b
|
| v1107.tar.gz | tar.gz | 54.1 MiB |
blake3-24 5d34d0afe788e77346e6435756dea2b1fd4204442e3def8a
sha256 c6a9f160ca38aecd2fa72d5ec2f95d5339c4e49ea9c4284a949925f79588ea96
sha1 9078485ae59088759adcd86398f88c4a78ecb6d3
|
install
http_archive(
name = "ruview",
urls = ["https://ratatoskr.space/pkg/ruview/v1107.tar.gz"],
integrity = "sha256-xqnxYMo4rs0vpy1ewvldUznE5J6pxChKlJkl95WI6pY=",
strip_prefix = "ruview-v1107",
)
.url = "https://ratatoskr.space/pkg/ruview/v1107.tar.gz",
install via yggdrasil mesh
http_archive(
name = "ruview",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v1107.tar.gz"],
integrity = "sha256-xqnxYMo4rs0vpy1ewvldUznE5J6pxChKlJkl95WI6pY=",
strip_prefix = "ruview-v1107",
)
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v1107.tar.gz",