Orchestration

27 articles about orchestration.

668K Line Codebase Multi-Agent Orchestration - Solving File Conflicts

·3 min read

How to coordinate multiple AI agents working on a large codebase simultaneously. Directory ownership, file locks, and strategies for preventing destructive

multi-agentlarge-codebasefile-conflictsorchestrationparallel-developmentclaudecode

Agent Teams vs Dedicated Concurrency - Orchestration or Tmux Sessions

·2 min read

Should you use agent team orchestration or just run 5-6 sessions in tmux? Decomposition matters more than the coordination method. Here's what works.

agent-teamsconcurrencytmuxorchestrationparallel-agentsclaudecode

Agent to Agent to Human - Shared State Files as Communication

·2 min read

Using a shared state file as a communication channel between agents and humans. Simple append-only files beat complex message queues for multi-agent

multi-agentcommunicationshared-statecoordinationorchestration

AI Agent Orchestration - A Beginner's Guide to Multi-Agent Workflows

·12 min read

AI agent orchestration coordinates multiple agents to complete complex tasks. Learn the key patterns - sequential, parallel, and hierarchical - with real

ai-agentsorchestrationmulti-agenttutorial

Broken Telephone in Agent Chains - Why Intent Gets Lost Beyond 2 Hops

·2 min read

When AI agents pass tasks through a chain, intent degrades after two hops. The central coordinator pattern keeps the original goal intact.

agent-chainsorchestrationcoordinator-patternmulti-agentintent

Claude Code as the Brain for Desktop Automation Workflows

·3 min read

Claude Code is not just a coding tool - it is the ideal orchestration brain for desktop automation. Here is how to use it as the central controller for

claude-codedesktop-automationorchestrationworkflowsmacos

Controlling AI Agent Swarms with tmux - the Scrappy Approach That Works

·2 min read

Forget fancy orchestration frameworks. Running AI agent swarms with raw tmux sessions is surprisingly effective for small teams. Here's how to manage

agent-swarmtmuxterminalorchestrationproductivitydevtoolsclaudeai

Cross-Review Between Parallel Agents Catches the Bugs Single Agents Miss

·5 min read

When parallel agents review each other's work instead of their own, they catch integration-level bugs that self-review misses. The data shows 87% fewer false positives and 3x more real bugs found.

multi-agentcode-reviewparallel-agentsorchestrationquality

Simple Routing Rules Beat Complex Orchestrators for Parallel AI Agents

·2 min read

When running multiple AI agents on the same codebase, simple delegation rules outperform sophisticated orchestration layers. Here's what works in practice.

agent-routingparallel-agentsorchestrationdelegationmulti-agentai_agents

Dumb Orchestrator With Smart Workers Beats One Big Agent

·2 min read

A simple decision-tree orchestrator routing tasks to specialized worker agents - browser, accessibility, sequential - is more reliable than a single

orchestrationmulti-agentworkflowreliabilityarchitectureautomation

The Simplest Way to Log Parallel Sub-Agent Conversations

·2 min read

When running 5+ AI agents in parallel with an orchestrator, having each sub-agent write its conversation to a file is the most reliable logging approach.

agent-loggingorchestrationparallel-agentsmcpobservabilityclaudecode

How I Build Multi-Agent Systems: Routing via Bindings

·2 min read

Multi-agent systems work best when each agent has focused bindings. Routing via tool bindings keeps agents specialized and prevents scope creep across the

multi-agentroutingbindingsagent-architectureorchestration

Multi-LLM Agent Routing - Using Different Models for Different Subtasks

·3 min read

How AI agents route between multiple LLMs - using Claude for orchestration, smaller models for classification, and specialized models for code generation or

multi-llmmodel-routingai-agentsclaudeorchestrationcost-optimization

Using Multiple LLMs for Multi-Agent Workflows - Orchestration Patterns That Work

·2 min read

How to run multi-agent workflows with different LLMs for different subtasks. Claude as orchestrator, specialized models for specific jobs, and env var

multi-agentllmorchestrationclaudeworkflowclaudecode

Claude Orchestrates GPT and Gemini - Multi-Model Routing for Desktop Automation

·3 min read

Use Claude for planning and reasoning, route execution tasks to cheaper models like GPT or Gemini. Multi-model orchestration cuts costs without sacrificing

multi-modelorchestrationclaudegptgeminicost-optimization

Orchestrate AI Agents from Your Phone with Mobile Approval Workflows

·3 min read

The missing piece in AI agent orchestration is mobile approval - webhook-based push notifications with approve and deny buttons that let you unblock agents

orchestrationmobileapproval-workflowwebhooksai-agentsllmdevs

Orchestrating AI Agents Over a Compliance Knowledge Base

·2 min read

How to build compliance-aware AI agent orchestration using stateless sub-agents with structured JSON I/O for auditable, repeatable regulatory workflows.

complianceai-agentsorchestrationjsonstatelessenterprise

Orchestrator Implementor Review Loop - Code Review with tmux Claude Code Sessions

·2 min read

How to implement a code review loop using tmux-based Claude Code orchestration with separate orchestrator, implementor, and reviewer sessions.

claude-codetmuxcode-revieworchestrationmulti-agent

Replace CrewAI with Parallel Claude Code Agents in Git Worktrees

·2 min read

How to replicate CrewAI's multi-agent orchestration using 5-6 parallel Claude Code sessions in git worktrees - simpler, faster, and with better results.

crewaiclaude-codegit-worktreesmulti-agentorchestrationclaudeai

MCP Changed How I Think About AI Agent Orchestration

·2 min read

Complex orchestration frameworks are overkill. A simple JSON state object passed between steps handles most AI agent workflows better than any framework.

orchestrationstate-managementmcpjsonai-agentsautomation

Going Single Model vs Orchestrating Across 4 LLMs

·2 min read

Sometimes the nuclear reset of dropping multi-model orchestration for a single LLM is the right call. Fewer moving parts means fewer failure modes and

single-modelmulti-modelorchestrationsimplificationllm-routing

Sub-Agents Spawn Overhead - Batching Tasks in Multi-Agent Systems

·3 min read

Spawning one sub-agent per task creates massive overhead in multi-agent systems. Batching related tasks into fewer agents with scoped responsibilities

multi-agentsub-agentsbatchingperformanceoverheadorchestration

Using tmux and Cron for Scheduled AI Agent Management

·2 min read

How to give each AI agent its own tmux pane on a cron schedule for reliable, observable agent orchestration on your local machine.

tmuxcronai-agentsorchestrationdevopsautomation

Agent Orchestrators vs Parallel Sessions with Worktrees

·2 min read

Comparing agent orchestration patterns vs parallel sessions with git worktrees. Real isolation wins for coding tasks because each agent gets its own workspace.

agentsorchestrationworktreesparallelgitcoding

Building a Desktop App to Orchestrate 5 Claude Agents in Parallel

·3 min read

How to build a Swift desktop app that runs 5 Claude Code agents in parallel on the same repo - task assignment, progress monitoring, and conflict prevention.

swiftdesktop-appclaude-codeparallel-agentsorchestrationmacos

Using Claude Chat to Orchestrate Claude Code via MCP

·2 min read

Run 5 Claude Code agents in parallel on the same repo with CLAUDE.md as the shared brain. Claude Chat acts as the orchestrator through MCP server connections.

claude-codemcporchestrationparallel-agentsclaude-md

Start with One Agent, Not a Team - Why Single Agents Beat Multi-Agent Orchestration

·2 min read

A single well-scoped agent with real execution capability beats a complex multi-agent system. Multi-agent adds coordination overhead, error propagation, and

single-agentmulti-agentorchestrationsimplicityai-architecture

Browse by Topic