yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/ruview/v2231
vault / ruview / v2231

ruview @ v2231

integrity

size
67.6 MiB
downloaded
last checked
source https://github.com/ruvnet/RuView · available · github

release notes

What's in this release

This release adds the beginnings of a trust layer to RuView's WiFi sensing — the plumbing so the system can eventually say either "here's my answer, and here's proof it's trustworthy right now" or, honestly, "I don't know" — instead of quietly guessing when conditions have changed. Think of it like a nutrition label for a sensor reading: not just the number, but where it came from, whether the sensor was properly calibrated, and whether anything's changed since.

It also folds in WiFi Veil, a separate defensive project that showed up as its own new public repository (ruvnet/wifi-veil) in the last release.

New capabilities

Honest status of the "trust chain" — please read this

This is a preview, not a finished, self-enforcing feature. The new components (calibrate → sign → check → allow/deny an action) are each well-built and each pass their own tests — but they are not yet wired together, and nothing in the live sensing server uses this chain yet to actually stop a bad reading from being trusted. It's like building a smoke detector, a sprinkler system, and a fire alarm — each tested separately on a workbench and working — but the wires between them haven't been run yet.

Two of the five safety fixes above are the exception: the network port guard and the CSI-data-policy checker (below) are fully wired in and active today.

A full write-up of this finding is documented in the codebase at docs/user-guide.md"Perception Certificate Spine (Developer Preview)", and in this independent review.

Verification (independently re-run, not taken on faith)

Known limitations

Docker image

docker pull ghcr.io/ruvnet/RuView:bf17fc0407e28eb136a6da3b02f0a457a724efdb

download

unix · zip
curl -fL -o v2231.zip https://ratatoskr.space/pkg/ruview/v2231.zip
                    printf '%s  %s\n' '5b7cc50459a4728b6c57f0308b9d2eb8fc8065c7339f20aab1c67018f6126fa7' 'v2231.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/ruview/v2231.zip"
$out = "v2231.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5b7cc50459a4728b6c57f0308b9d2eb8fc8065c7339f20aab1c67018f6126fa7") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2231.tar.gz https://ratatoskr.space/pkg/ruview/v2231.tar.gz
                    printf '%s  %s\n' '07eeceda5a0fb23031c701df2daecd6cd625ee59a077b29cfd4e86f05847ceab' 'v2231.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/ruview/v2231.tar.gz"
$out = "v2231.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "07eeceda5a0fb23031c701df2daecd6cd625ee59a077b29cfd4e86f05847ceab") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2231.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v2231.zip
                    printf '%s  %s\n' '5b7cc50459a4728b6c57f0308b9d2eb8fc8065c7339f20aab1c67018f6126fa7' 'v2231.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v2231.zip"
$out = "v2231.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5b7cc50459a4728b6c57f0308b9d2eb8fc8065c7339f20aab1c67018f6126fa7") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2231.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v2231.tar.gz
                    printf '%s  %s\n' '07eeceda5a0fb23031c701df2daecd6cd625ee59a077b29cfd4e86f05847ceab' 'v2231.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v2231.tar.gz"
$out = "v2231.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "07eeceda5a0fb23031c701df2daecd6cd625ee59a077b29cfd4e86f05847ceab") { throw "sha256 mismatch" }
artifact format size hashes
v2231.zip zip 67.6 MiB
blake3-24 1894e3ed58167f422feb4c54f4751f85d69bcd071998ab25
sha256 5b7cc50459a4728b6c57f0308b9d2eb8fc8065c7339f20aab1c67018f6126fa7
sha1 80f9e3a61fc3b7ad549e40dc234375060c1632a7
v2231.tar.gz tar.gz 65.4 MiB
blake3-24 67ecfa6cdb084857dd15db6073ed2ce8ebb21028d4253e73
sha256 07eeceda5a0fb23031c701df2daecd6cd625ee59a077b29cfd4e86f05847ceab
sha1 09e0fa804c1d987135c1954ecf7c61e9c5bf3e30

install

bazel
http_archive(
    name = "ruview",
    urls = ["https://ratatoskr.space/pkg/ruview/v2231.tar.gz"],
    integrity = "sha256-B+7O2loPsjAxxwHfLa7NbNYl7lmgd7Kc/U6G8FhHzqs=",
    strip_prefix = "ruview-v2231",
)
zig
.url = "https://ratatoskr.space/pkg/ruview/v2231.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
    name = "ruview",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v2231.tar.gz"],
    integrity = "sha256-B+7O2loPsjAxxwHfLa7NbNYl7lmgd7Kc/U6G8FhHzqs=",
    strip_prefix = "ruview-v2231",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v2231.tar.gz",
← v2235v2229 →