What is AI agent continuity?
The ability of a multi-agent system to keep the context and work state needed to continue a task when it changes agent, session, model or workflow step. It is not about remembering everything, but about what the next agent needs before acting: decisions taken, constraints set, what was done, what is left. Venkai implements it as typed, versioned objects read and written over REST, a Python SDK or MCP.
/en/architecture/
Can Venkai work with Mem0?
Compatible by architecture, not tested. In practice: before the prompt, the agent reads user memory from Mem0 and project state from Venkai; after a decision, it writes the conclusion to Venkai. Nothing in Venkai conflicts with Mem0, and no official integration exists.
Compatible by architecture/en/integrations/
What happens when one AI agent hands work to another?
Without a shared layer, the next agent gets whatever the previous one put in its last message, or re-reads the whole history. With Venkai, the outgoing agent has written its decisions, constraints and open items as typed objects; the incoming agent recalls the ones relevant to its task before its first prompt. A handoff can also be declared (POST /api/handoffs, experimental: a record, not a mechanism that enforces anything). Evidence: the A → B → C scenario passes 19 of 19 checks (python demos/agent_handoff_demo.py).
/en/research/
What state should survive an agent handoff?
What the next agent needs before acting, not the transcript: decisions and their reasons, hard constraints, established facts, preferences, what happened, how entities relate, and what is left to do. Leave out intermediate thoughts, tool output that can be re-read, and anything already in the repository.
/en/architecture/
How do you give an LLM agent long-term memory?
By writing the durable parts of the work into an external store, then retrieving them by relevance at the start of each run instead of replaying the whole transcript. In practice: choose what deserves to persist (facts, decisions, constraints — not chatter), type it so it can be queried, and cap what you re-inject so the window stays small. Venkai implements that pattern over REST, a Python SDK and MCP; the same pattern can be built by hand on a database and an embedding index.
What is Venkai?
A structured context store for agents. An agent writes typed objects into it — facts, decisions, constraints, preferences, events, relationships — and another agent retrieves them by relevance, in a different session or on a different model. Reachable over REST, Python SDK and MCP.