Introduction
What is AgentBeacon
AgentBeacon is a decision operations center for AI coding agents. It coordinates teams of agents working on your codebase and surfaces only the decisions that need a human.
It is not a terminal multiplexer or a chat wrapper. You assign a feature to a lead agent, it delegates to implementers and reviewers, manages iteration loops, and presents you with a queue of structured questions. The interaction model is closer to triaging an inbox than monitoring a terminal.
Core Concepts
Execution — A unit of work. You create an execution with a prompt (“Add rate limiting to /api/users”), assign it to an agent, and it runs to completion or until you cancel it.
Session — A running instance of an agent within an execution. The lead agent’s session spawns child sessions when it delegates. Sessions form a tree.
Agent — A configured specialist type. Defines the model, system prompt, role, and tools an agent session uses. You create agent configs once and reuse them across executions.
Driver — The underlying agentic harness that powers an agent session. AgentBeacon orchestrates coding agents you already have installed (Claude Code, Copilot CLI, Codex CLI). A driver is the bridge between AgentBeacon and a specific CLI.
How It Works
- You assign a task to a lead agent
- The lead breaks the work down and delegates to its team
- Agents iterate: implement, review, revise
- When the team hits genuine ambiguity, a structured decision surfaces to your queue
- You answer, the team continues
- Review the converged output with full decision and change logs
One engineer, multiple features in flight, decisions as the main touchpoint.