Stable identity
A VLAD remains stable while its keys and protected metadata rotate.
Verifiable config distribution
Config distribution becomes plog distribution. A daemon publishes configuration into its provenance log; a trusted consumer syncs, verifies, and pulls it into real files on disk.
A VLAD remains stable while its keys and protected metadata rotate.
Every state transition is hash-linked and authorized by the previous log state.
VLADemlia helps peers locate current records without becoming the trust root.
Key changes become signed updates that followers can verify and apply.
Verifiable config distribution
A daemon publishes configuration values into its own provenance log. A consumer that trusts that daemon already syncs and verifies the log, so distributing config becomes the same operation as distributing plog state.
Pulling turns verified plog state into real files: a WireGuard interface config, an SSH known_hosts file, a TLS client config, a PEM certificate bundle, or a governance document staged for review.
It reuses the existing DHT synchronization. There is no new transport, no background polling, and it is not a secrets channel. Private keys are never pulled; only public material and declarative configuration.
The producer publishes entries under a /config/ path in its own plog. The consumer pulls a domain from a trusted VLAD and materializes the artifact, or fetches a governance document for review only.
All commands talk to the local daemon over its Unix socket, and every route is default-deny: read to pull, manage to publish or grant trust.
# Producer: advertise a WireGuard peer in your own plogbs config publish --path /config/wireguard/interface/address --value "10.0.0.1/24"bs config publish --path /config/wireguard/peers/$VLAD/public_key --value-file peer.pub# Consumer: review as a dry-run, then trust the domain and writebs config pull wireguard --from-vlad $PUB_VLAD --output /etc/wireguardbs config pull wireguard --from-vlad $PUB_VLAD --trust --write --output /etc/wireguard# Governance: fetch to a review file, never auto-appliedbs governance fetch policies --from-vlad $PUB_VLAD --trustLow-authority domains render to live files. High-authority governance domains are fetched to a review file and never applied to a running daemon.
Every value read from a plog is treated as attacker-influenced. Each value is validated into a strict typed model before any renderer sees it, so out-of-grammar input cannot fabricate a shell hook or smuggle a private key into a bundle.