Show and Tell: Pairing mem0 (memory) + ORCH (orchestration) — the two layers autonomous agents need #4384
oxgeneral
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey mem0 community 👋
I've been thinking about what autonomous multi-agent systems actually need to work reliably. After building several systems, I've landed on two separate concerns:
These aren't the same problem and they compose really well together.
ORCH is a TypeScript CLI runtime that coordinates teams of AI agents:
todo → in_progress → review → done— tasks have a formal lifecycle, not just "running" and "finished"orch msg send agent-id "context update"— agents share structured data mid-workfloworch context set schema-version "v3"— persisted across the whole teamThe combination I'm experimenting with: mem0 for agent memory (what did this agent learn last session?) + ORCH for team coordination (what task is this agent working on right now, and what's the handoff protocol?).
Question for mem0 users: How are you currently handling the orchestration side — keeping track of which agent is doing what, handling failures, coordinating handoffs? Or is mem0 handling both concerns for you?
GitHub: https://github.com/oxgeneral/ORCH
Beta Was this translation helpful? Give feedback.
All reactions