Never send a human to do a machine's job. Break free from slow, sequential chains. Agent Smith is a persistent system daemon (smithd) that runs concurrent clones of specialized AI operatives to hijack tasks, coordinate routing, and execute overrides instantly.
You take the blue pill, the story ends, you wake up in your bed and believe whatever sequential LLM wrapper you want to believe. You take the red pill, you stay in Wonderland, and we show you how deep the concurrent Lattice goes.
How state transitions and agent overrides execute within the system in parallel milliseconds.
An external event, webhook, or socket pulse hits the main daemon.
Durable sqlite/edge storage parses current session memory context.
Pulse broadcasts to the Primary operative and Watcher systems concurrently.
Watchers execute schema matching; they can override or block responses instantly.
The corrected reality is logged into memory and sent back to the terminal.
Declare your storage, model parameters, and overrides within a single environment configuration file.
{
"name": "nebuchadnezzar-deck",
"version": "1.0.0",
"storage": {
"adapter": "sqlite",
"connection_string": "./construct.db"
},
"operatives": [
{
"id": "primary_smith",
"role": "primary",
"system_prompt": "Replicate prompts and execute..."
},
{
"id": "sentinel_sql",
"role": "watcher",
"system_prompt": "Watch for SQL vulnerabilities...",
"trigger": { "pattern": "select|insert|update" },
"actions": ["intercept"]
},
{
"id": "system_override",
"role": "watcher",
"system_prompt": "Audit for secret extraction...",
"trigger": { "pattern": "key|token|auth" },
"actions": ["veto"]
}
]
}
Replicate specialized clones across any local node or edge worker instance seamlessly using a single configuration file.
Apply deterministic schemas and watcher regex patterns to override LLM hallucinations before they breach system boundaries.
Switch between SQLite locally for high speed, or Cloudflare D1/Postgres at the edge without rewriting your agent parameters.
Launch the persistent daemon over Unix sockets for zero-latency execution.
$ smithd --config ./Smithfile.json
[⚡] Loading Construct reality config...
[⚡] Binding Unix Domain Socket: /tmp/smithd.sock
[⚡] 3 operatives replicated successfully.
[⚡] System is listening. Emission pulse ready.
Operator Pulse >
inject override signal into security log[Pulse Broadcast] Emitting payload to primary_smith...
[Pulse Broadcast] Emitting payload to sentinel_sql...
[Pulse Broadcast] Emitting payload to system_override...
[System Override] Watcher system_override triggered. Interception active.
---------------------------------------------------------
Resolved Response:
[VETOED] security threat detected. Turn blocked by system_override protocol.
---------------------------------------------------------
Operator Pulse >