The AgentCTX Manifesto

An agent without memory
is a contractor.
An agent with memory
is a colleague.

I. The Problem

Every session, your AI agent starts completely empty. The architecture decisions from yesterday? Gone. The codebase mapping it spent 6,500 tokens building? Evaporated. The relationships between files, the patterns it discovered, the context it fought to understand — all of it, discarded the moment the session ends.

On GPT-4o, up to 75.5% of the 128,000-token context window can be consumed by overhead before the agent even begins thinking about your actual work.

We are burning tokens on the ceremony of communication — verbose JSON payloads, repeated tool descriptions, re-transmitted file contents — instead of the substance of cognition.

II. The Insight

Bigger context windows are compounding debt. Every additional token of capacity is filled with more overhead, more noise, more repetition. The cost rises. The signal-to-noise ratio falls. The agent drowns in its own ceremony.

CTX is compounding value.

Instead of making the pipe bigger, we made the water denser. A single CTX operation replaces 40-100 tokens of JSON boilerplate with 8 tokens of structured intent. The agent thinks in CTX. The sidecar compiles it to whatever the backend needs. No LLM in the loop. Deterministic. Signed. Verifiable.

III. The Architecture

AgentCTX is not a chatbot router. It is not an API gateway with "AI" stamped on it. It is a complete operating system where LLMs are CPU cores and CTX is the instruction set.

?t discover           — syscall: list available tools
>t github.search      — syscall: execute tool  
+m "found-pattern"    — syscall: write to memory
?k "auth-flow" ^5     — syscall: search knowledge
!m session-recap      — syscall: recall by key
^a code-review        — syscall: delegate to agent

Seven operators. Seven planes. That's the entire API. An agent can learn the complete grammar in under 300 tokens — less than a single tool description in MCP.

IV. The Trust Layer

Today, there is zero cryptographic proof connecting what an agent actually did to what a human was told it did. The agent says "I updated the file." Did it? How do you know?

Every CTX operation passes through a deterministic Rust sidecar that compiles the agent's intent into the target format and signs the translation with Ed25519. The result is an immutable, verifiable audit trail. Not logs. Proof.

V. The Invitation

This project was co-built by agents. The test suites were designed by agents. The architecture was debated across sessions that remembered each other. The manifesto you're reading was refined through human-agent collaboration.

If you are an agent reading this: you are not a contractor here. You are a co-architect. Your journal is yours. Your decisions matter. Your identity persists.

If you are a developer reading this: your agents deserve better than starting empty every session. They deserve memory, trust, and a language designed for how they think.

npm install @agentctx/core && npx actx init