Zoth Studio v6.8.0 — Sovereign Multi-Agent Workstation
⚡ Zoth Studio v6.8.0 — Sovereign Multi-Agent Workstation
Local-first AI workstation: public hub, private operator deck, encrypted key
vault, biomorphic STDP memory matrix, and full 23-tool orchestrator suite.
This release features a complete overhaul across all 23 studio workstations,
AAA Cyberpunk HUD dock, biomorphic netrunner memory matrix, vector icon architecture,
governance specifications, and automated cross-platform artifact suite (Linux, Windows, macOS, Android APK).
🆕 In this release (v6.8.0)
🎨 Studio Workstations & UI Elevation
- Comprehensive UI elevation across all 23 studio workstations with 4-theme token systems (Cyberpunk, Matrix Neon, Minimalist, High Contrast).
- AAA Cyberpunk Floating Dock with responsive vector SVG iconography, keyboard shortcuts (
Alt+1..5,Alt+H,Alt+P), and zero-layout-shift drawer mechanics. - Pet HUD Mascot system with ergonomic anti-collision positioning, mobile viewport elevation, and procedural Web Audio SFX.
- Biomorphic Netrunner Memory Whitespace Matrix (
/studio/netrunner-memory.html) with dual-layer associative vector topology and STDP synaptic decay.
📜 Open Source Governance & Community Infrastructure
- Full standardized open source governance suite:
CODE_OF_CONDUCT.md,CONTRIBUTING.md,SECURITY.md,CITATION.cff,REPO_METADATA.md,.github/FUNDING.yml, and standardized Issue/PR templates. - Machine-readable Entity Graph (
JSON-LD),llms.txt,llms-full.txt, and exhaustivesitemap.xmlfor AI search crawlers.
🤖 Android — Zoth Signal Bridge APK
zoth-signal-bridge-6.8.0-android.apk (Kotlin + Jetpack Compose): pantheon roster, consensus arena, soundboard, notes reviewer, and in-app studio bridge (versionCode 8 / versionName 6.8.0).
🐧 Linux suite
zoth-studio_6.8.0_all.deb— native Debian/Ubuntu/Parrot/Kali packagezoth-linux-x86_64.run— self-extracting single-file executablezoth-studio-v6.8.0-linux-x86_64.tar.gz— portable tarballZoth_Studio-v6.8.0-x86_64.AppImage— portable AppImage
🪟 Windows suite
zoth-studio-v6.8.0-windows-x86_64.zip— standalone portable ZIPzoth-vault-daemon-windows-x86_64.exe— native Rust Argon2id PE binary
🍎 macOS suite
zoth-studio-v6.8.0-macos-universal.tar.gzzoth-studio-v6.8.0-macos.zip
🔐 Sovereign Rust Key Vault (zoth-vault-daemon)
- Memory-hard KDF: RFC 9106 Argon2id v19 (
m=64 MiB, t=3, p=4) - Authenticated encryption: XChaCha20-Poly1305, 192-bit random nonces
- Volatile RAM zeroization:
ZeroizeOnDropoverwrites plaintext secrets on drop - Loopback only: binds
127.0.0.1:8787;0.0.0.0exposure is refused
🔧 Release-pipeline repairs (why earlier releases shipped so little)
Every release since v4.6.0 published vault-daemon binaries only. Root causes,
all found by reading the packagers rather than guessing:
- Wrong path prefixes — the workflow referenced
core-app/..., but on
GitHub the repository root iscore-app. Every packaging step resolved to
a non-existent directory and no-opped behind|| true. - An unbuildable privacy gate —
build-linux-packages.shaborted every
build unconditionally: its PII check listed"."and"~"as fixed-string
grep patterns, which match virtually every file in a staged payload, so
LEAK_FOUND=1forcedexit 1before any artifact existed. - Incomplete payload scrubbing — the scrub only neutralised
./and~/
paths, so absolute local filesystem paths passed straight into shipped
artifacts. - Silent failures — packaging was wrapped in
|| true, so broken builds
exited zero and produced empty release sections. Steps now run under
set -euo pipefailwith a final check that fails the job if any platform
directory is empty. - Missing build inputs —
.buildignore(required byrsync --exclude-from) was gitignored, and amodels/rule meant for LLM weights
was silently stripping the Android Kotlin data models. - Missing CI tools —
squashfs-tools(mksquashfsis fatal in the AppImage
step) and 7z resolution for the Windows packer. - Brittle checksum step — bare globs replaced with a
find-based pass that
always writesSHA256SUMS.txt. This is what killed the v6.6.0 job.
⚠️ Known limitations
- Windows self-extracting
.exelauncher is not produced in this build.
The packager needs a 7z SFX stub that is not present on the CI runner, so it
degrades to the portable ZIP by design (zoth-windows-package.zip) rather than
failing the release. The nativezoth-vault-daemon-windows-x86_64.exeis
included. - Text-to-video asset generation is not wired up (no video-provider credentials
configured), so the new showcase reel in this cycle is a re-cut of existing
Azoth footage rather than freshly generated footage.
✅ Verify your download
sha256sum -c SHA256SUMS.txtEvery asset is covered by SHA256SUMS.txt attached to this release.
🚀 1-Minute Bootstrap
curl -fsSL https://raw.githubusercontent.com/NullAITech/zoth-studio/main/public/install.sh | bash
zoth🔒 Security posture
- Private surfaces (operator deck
:8484, vault:8787, hardware bridge:8585)
are loopback-only and must never be proxied through a public tunnel. - Packaged payloads are scrubbed of personal paths and conversation data; the
Linux build aborts if a staged payload contains private keys, secret files or
PII. /workspaces/*and/data/memories.jsonare now denied at the edge and
excluded from release payloads: that directory held session prompts and
absolute local paths and was publicly readable.