The Sovereign Operating System for Always-On Agents
Open-source the engine. Atomicize the limbs. Handshake with tickets. Verify with manifests. Own the infrastructure.
QuackVerse is an architectural doctrine for building Sovereign Agent Architectures. It turns raw compute into a Digital Employee Factory where always-on agents (like OpenClaw) act as the managers of deterministic, auditable limbs.
QuackVerse provides the local-first "Userland" for Sovereign Agents by separating kernel contracts, atomic CLI limbs, and an authoritative artifact store.
QuackVerse is implemented using three strict architectural rings, anchored by a local Artifact Store.
┌──────────────────────────────────────────────────────────┐
│ RING C — AGENTIC CONTROL │
│ OpenClaw (Manager) · Temporal · Quackchat (Cockpit) │
├──────────────────────────────────────────────────────────┤
│ RING B — ATOMIC LIMBS (WORKERS) │
│ QuackIngest · QuackDistro · QuackVideo · QuackDeck │
├──────────────────────────────────────────────────────────┤
│ RING A — THE SOVEREIGN BRAIN │
│ Ticket System · QuackStore (.quack/) · QuackLedger │
└──────────────────────────────────────────────────────────┘
The Constitutional Layer. In the Sovereign Agent era, Ring A moves from "definition" to "authoritative proof."
The system of record lives hidden within each project.
ledger.db: The immutable lineage of every action taken.runs/: Individual directories for everyRunID.limbs.json: The discovery manifest (tells Agents what limbs they have).
To prevent agents from hallucinating success, all long-running tasks follow the Ticket Protocol:
- Trigger: Agent calls a limb; tool issues a
RunIDticket and exits. - Poll: Agent must poll
quack status <RunID>for progress. - Verify: Success is only valid when the tool writes a
QC_MANIFEST_VERIFIEDchecksum.
Ring B tools are no longer monolithic "batch" scripts; they are Atomic Limbs.
- Granular Verbs:
add-slide,cut-clip,normalize-audio. - Stateless: They do not remember the past; they read the current state from the
.quack/store. - Machine-First: Every limb implements
--discoveryto output its own documentation for LLM consumption.
QuackLimbs answer: > “Given this specific instruction, mutate the project state and provide proof.”
The Primary User. The Agent is the "Manager" that sequences the Atomic Limbs of Ring B based on the "Sovereign Agent Guide" (Pillar A).
The Durable Memory. Temporal tracks the long-running async tickets. If an Agent crashes or the power fails, Temporal ensures the "Manager" knows exactly where to resume.
Reframed from a "Chatbot" to a Human Oversight Interface. It is where the human "Operator" monitors the Agent’s "Monologue" and approves high-risk actions (spending money, publishing content).
- Discovery (Pre-flight): Agent runs
quack --discoveryto learn available limbs. - The Ticket (Trigger): Agent triggers an async limb and receives a
RunID. - The Proof (Manifest): Tool emits a
manifest.json+summary.md. - The Monologue (Context): Agent reads the
summary.md(LLM-optimized snippet) to update its internal context without parsing raw data.
Every tool in the QuackVerse follows the Atomic Grammar:
quack <tool> <limb> [options]
Mandatory Verbs for Agents:
status <RunID>: Check the async ticket state.explain <RunID>: Output thesummary.mdfor LLM context.doctor: Auto-fix the local environment.--discovery: Output machine-readable capability map.
quackverse/
├── quackcore/ # Ring A: Ticket system & Ledger
├── quacktools/ # Ring B: Atomic Limbs (Video, Ingest, etc.)
├── quackrunner/ # Ring C: Local execution gateway
├── quackchat/ # Ring C: Operator cockpit (TS/Web)
├── agents/ # Ring C: Sovereign Agent definitions (OpenClaw config)
└── README.md
- Artifacts are Canon: If it isn't in the
.quack/store, it never happened. - No Hallucinations: Success requires a verified manifest checksum.
- Atomic Limbs: Prefer 10 small commands over 1 big command with 10 flags.
- LLM Context First: Every run must produce a
summary.mdfor the agent. - Local-First: The system of record must be portable within the project folder.
- Async by Default: Respect the agent’s context window; issue tickets for long jobs.
- Sovereignty: No cloud dependency for core organizational memory.
QuackVerse is built to empower Sovereign Operators.
- QuackCore is the constitution.
- The Artifact Store is the organizational memory.
- Atomic Limbs are the digital hands.
- Sovereign Agents are the digital managers.
- The Human is the Commander-in-Chief.
The Manager plans. The Limbs produce. The Human judges. The Organization compounds.
Would you like me to update the specific "Governance Rules" or "Communication Doctrine" for any of the other Ring B tools (Video, Tutorial, Research) to reflect this atomic shift?