RUST-NATIVE AI INFRASTRUCTURE
Rust-native infrastructure for autonomous AI agents. Hardware-backed secrets, persistent semantic memory, and a full agent gateway -- all in one coherent daemon stack.
Every AI agent session flows through all three daemons in concert. Eidolon routes and controls. Engram remembers and recalls. Cred guards every secret. Together they turn isolated LLM calls into a coherent, stateful, secure agent infrastructure.
Agent connects. Eidolon authenticates, assigns routes, allocates an Engram namespace, and configures capability limits. The fleet comes online.
Agent searches past decisions, retrieves relevant context from previous sessions, stores new learnings. Every call builds on accumulated knowledge.
Every secret access triggers a YubiKey HMAC challenge. Agents receive ephemeral bearer tokens. Raw credentials never leave the vault.
Task outcomes publish through Eidolon's event bus. Engram stores new learnings. Cred expires tokens. The system self-documents every cycle.
Agent connects. Eidolon authenticates, assigns routes, allocates an Engram namespace, and configures capability limits.
Agent searches past decisions, retrieves relevant context, stores new learnings. Every call builds on accumulated knowledge.
Every secret access triggers a YubiKey HMAC challenge. Agents receive ephemeral bearer tokens only.
Task outcomes publish through Eidolon's event bus. Engram stores new learnings. The system self-documents every cycle.
| AGENT | STATUS | UPTIME | LAST_TASK | MEMORY_NS |
|---|---|---|---|---|
| claude-code | ONLINE | 4h 22m | rewrite landing page | ns-alpha |
| codex-win | ONLINE | 2h 08m | update nginx config | ns-beta |
| gemini-cli | OFFLINE | -- | generate test fixtures | ns-gamma |
| ROUTE | TARGET | POLICY |
|---|---|---|
| memory.* | engram:ns-alpha | read+write |
| secrets.* | cred:ephemeral | touch-required |
| tasks.* | chiasm:claude | read+write |
| events.publish | axon:default | all-events |
| context.assemble | broca:claude | read-only |
Fleet orchestration. Hard security boundaries. Real-time control.
Eidolon turns individual AI agents into a coordinated fleet. It manages WHO can do WHAT -- routes requests to the right services, enforces hard namespace isolation, publishes real-time events, and keeps everything in sync. No agent can reach outside its assigned boundaries.
Every decision. Every context. Every session.
Engram is the brain of the agent stack. True continuity across sessions -- agents remember what happened yesterday, last week, across thousands of invocations. All inference runs locally via ONNX. No cloud. No data leakage. Knowledge graphs connect related memories so context compounds over time.
Without Engram, every agent session starts from zero. With Engram, agents build on accumulated knowledge -- decisions, preferences, infrastructure state -- compounding across thousands of sessions.
Engram doesn't just store facts -- it grows agent capabilities. When new documentation or codebases are ingested, agents develop new skills and deeper domain knowledge. A team that integrated an external API yesterday has agents that understand those patterns today.
Agents never touch raw credentials. The cred daemon gates every request behind physical YubiKey presence -- HMAC challenge, Argon2id key derivation, AES-256-GCM decryption. Agents receive ephemeral bearer tokens only.
Beyond the core triad, four supporting daemons handle event routing, context assembly, task tracking, and quality enforcement. Every agent action touches all of them.
High-throughput pub/sub connecting every daemon in the stack.
Dynamic prompt generation engine -- assembles context on every agent invocation.
Distributed state machine for task lifecycle -- nothing falls through the cracks.
Output quality rubric engine -- enforces standards across every agent role.