Diluvium 5.5.1_build10
[5.5.1_build10] - 2026-08-18
v5.5.1_build10 · Lua 5.5.1 · bytecode format 0x46
Assistant enablement, the additive half. The workload this build
serves is an AI assistant deployed as a swarm: inbound webhooks,
outbound LLM and API calls, a few credentials, bounded workers.
Everything here is additive -- new config keys, new result fields, new
library surface, new tooling -- and a deployment that configures none
of it behaves as it did on build9. The behaviour-changing half (rest
egress hardening, consuming the plugin wake policy, exec on the
deferred seam) is deliberately not here; doc/BUILD10.md §6 records
each with its reason.
Added
- Listener response headers. A reply may carry
headers = { ... },
gated per listener byresponse_headers-- a lowercase allowlist
mirroring build7's request side. The host-owned framing names
(content-length, connection, transfer-encoding, content-type) are
refused in the allowlist at config load. On the wire the header
name always comes from the allowlist, never from guest bytes, and a
value carrying a control byte, a name not listed, or a value past
the bound drops that header whole -- never truncated -- while the
response still answers. - Rest plugin response headers.
rest/getandrest/postresults
carry aheadersmap: names lowercased, repeats joined ", ", at
most 32 entries with names <= 64 and joined values <= 4096 bytes,
past a bound dropped whole. Both bindings, one manifest; the C
plugin's header comment had promised this shape since the file was
written, and now tells the truth. host.spawn,host.children,host.events-- the swarm half
of the build7 guest library. A spawn returns a handle when the
swarm'sspawnedevent lands; a denial raises with the refused
capability in the message;handle.kill()awaits its outcome;
host.eventsdrains child exits, faults and budget overruns,
buffered through any outcome wait. Nochild.push: the swarm does
not yet deliver endpoint references between instances (build7's
recorded cap4 gap), and the library does not pretend otherwise.script/mint_vault.lua-- mint a secrets vault as a compiled
secure function. Names arrive as environment-variable names (values
never ride argv); the output loads in a sealed guest viaload.
The claim is the secure-function claim and no more: obfuscation,
not encryption. The tool refuses to write a vault whose values
survive a plaintext or single-byte-xor search, and
test/test_vault.luaproves the checks can fail on a non-secure
build of the same table.- An assistant-shaped example --
host/assistant.host.luaand
host/assistant.lua: listener + rest + vault + spawn wired with
honest bounds, including the raisedcall_timeout_msan LLM round
trip needs and the caveats (fetch-per-use, snapshots) the vault
docs insist on.
Upgrading
Snapshots taken by 5.5.1_build9 restore on this build. The host
library grew members inside its module table, which is a named
permanent resolved to the runtime's own copy on restore; no permanent
name was added or moved, and no wire shape changed -- the reply
message's headers and the rest results' headers are new optional
fields old programs never send or read.
Nothing activates by itself. Response headers need a
response_headers allowlist in the listen block; host.spawn needs
the lifecycle capability the raw idiom already needed; the vault is
a tool you run, not a connector.
Built from commit 7dfe1d590488.
Download guide
| Platform | File | Notes |
|---|---|---|
| Linux (standard) | diluvium_linux_static_x86_64 |
Static; works on Ubuntu, Fedora, CentOS, Arch |
| Raspberry Pi 3/4/5 | diluvium_linux_static_aarch64 |
64-bit OS only |
| Raspberry Pi Zero | diluvium_linux_static_armv7l |
32-bit ARM |
| macOS (Apple silicon) | diluvium_darwin_arm64 |
M1/M2/M3/M4 |
| macOS (Intel) | diluvium_darwin_x86_64 |
|
| Windows | diluvium_windows_x86_64.exe |
64-bit |
| WASI | diluvium_wasi.wasm |
Needs a runtime with wasm exception-handling (wasmtime 28+ with -W exceptions=y) |
| Browser | libdiluvium_wasm_unknown.a |
wasm32-unknown-unknown static library |
Each platform also ships a diluvium_compiler_* binary (luac
with the -r analysis report flag) and a libdiluvium_*.a static
library for embedding.
Verifying a download
sha256sum -c SHA256SUMS.txt --ignore-missing
BUILDINFO.txt records the exact commit, build time and workflow run.