LangGraph, built my own orchestrator on top. Agents run as parallel workers (Claude Code, Codex CLI, Gemini CLI), each in its own git worktree. Agent-to-agent data flows through SQLite-structured JSON output per task, central coordinator reads and routes. Letting agents talk to each other directly was a mess. Biggest takeaway: don’t let agents pick their own subtasks. Define the task graph yourself: agents only handl…
Ask HN: How are you orchestrating multi-agent AI workflows in production?
21–30 of 33 posts
Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#22From a production sales context specifically, the orchestration question that matters most is: how do you handle state across a multi-turn conversation with a real human who might reply days apart? The naive approach is stateless. Each reply gets processed independently. This breaks down fast when a prospect says "as I mentioned before" and the agent has no memory of what they mentioned before. What has worked better…
Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#23Observability is the part most people underestimate. I log every agent run with input, output, token usage, and latency to a dedicated collection. Simple but it catches failures fast.
Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#24I roll my own on Node.js. Each agent is an Express endpoint running in a V8 isolate — they communicate through a shared MongoDB layer where each agent reads/writes its state. Data passing is just JSON documents with a pipeline ID linking them. For orchestration I use a simple coordinator endpoint that chains the agents sequentially or fans out in parallel depending on the task. Observability is the part most people u…
Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#25Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#26Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#27Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#28We've been running this pattern in production for a few weeks. The biggest pain wasn't orchestration, it was trust when agents delegate to agents they don't own. We ended up building reputation-based gating so a low-trust agent can't delegate upward. Happy to share specifics if useful.
Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#29LangGraph, built my own orchestrator on top. Agents run as parallel workers (Claude Code, Codex CLI, Gemini CLI), each in its own git worktree. Agent-to-agent data flows through SQLite-structured JSON output per task, central coordinator reads and routes. Letting agents talk to each other directly was a mess. Biggest takeaway: don’t let agents pick their own subtasks. Define the task graph yourself: agents only handl…
Re: Ask HN: How are you orchestrating multi-agent AI workflows in production?
#30From a production sales context specifically, the orchestration question that matters most is: how do you handle state across a multi-turn conversation with a real human who might reply days apart? The naive approach is stateless. Each reply gets processed independently. This breaks down fast when a prospect says "as I mentioned before" and the agent has no memory of what they mentioned before. What has worked better…