INTEGRATION CORE
The structure between the LLM and the system
The map gives each step exactly the operational frame it needs: where the agent is, what it knows, what it may do, and which conditions must hold. Integration becomes inspectable, extensible, and compatible with different models, domains, and flows.
We do not question the user input or the model's generation (LLM) — we leave those alone. What moves into code at runtime is the cognitive load of heavy semantics: a finding the model signals after its own inspection becomes a typed result, not extra text. The model solves this through code, not by adding useless semantics during execution — so a loop that searches for solutions does not clog its path with garbage in generated text.
We did not give up semantics — we moved it. The raw spec does not fit any practical context window and costs real money on every step. The solution was not to cut meaning, but to turn it into a traversal map that the model walks itself: it keeps its generation, its reasoning, everything that belongs to it — but it applies logical restrictions to its own next move.
Model
Defines contexts, roles, states, and transitions without narrowing the model's intelligence.
Read page →02Runtime
Projects the local frame needed for each step and checks the resulting move.
Read page →03Architecture
Follows the flow between integration, map, LLM, gates, and result.
Read page →04Evidence
Keeps known, current, expired, and still-needed information separate.
Read page →05Evaluation
Checks the frame's properties and measures the effect on the full system.
Read page →06Reference
Install the core and connect it to your own agentic stack.
Read page →