HawkTalk · Prod Dob

Grow it. Sync it. Prove it.

A model installed from a tiny seed and updated by delta — the real inflation engine and the signed-Merkle trust layer, running in this tab. Every byte verified against a publisher signature before it's trusted. No mock crypto.

reconstructed model
DNA seed shipped
install payload cut
sync payload (v1→v2)

① Install — grow from a seed

Device already holds the shared base. It fetches the seed, inflates the model on-device, and verifies the whole rebuild against the publisher-signed Merkle root.
idle
ready.

② Sync — update by delta

Publisher signs v2 (a few matrices changed). The device Merkle-diffs its current model against v2's signed leaves and pulls only the chunks that changed — each proven against the new signed root before patching.
idle
unchanged (kept)pulled deltaverified
waiting for install…

③ Tamper — a poisoned chunk can't get through

Flip one byte in a transferred chunk. The Merkle proof rejects it; the honest chunk is pulled and proven instead.
idle
waiting for install…

What's real here vs. the remaining mile. The inflation math (dequant → low-rank reconstruct → base+Δ), the ECDSA signing, the SHA-256 Merkle tree, the diff-and-correct sync — all real, all running in your browser on representative model tensors (), same code the app ships (dobson.mjs, meshTrust.mjs). What this page does not yet do is push the reconstructed weights through onnxruntime-web for live token generation — that tensor-surgery→ORT step is the last integration mile, validated separately on the real Feedseed weights. The protocol, crypto, and payload math are production; the inference wiring is in progress.