
Coding Agent Swarms, Part 5: Running the Fleet From Your Phone
The Last Mile Is the Operator The first four parts of this series built the substrate: foundation, fleet, multi-fleet …

Calliope AI IDE v1.5.0 is live. This release doubles down on what makes the IDE genuinely different from Cursor, Windsurf, and every other AI coding tool on the market: multi-agent workflows that actually scale to real engineering problems. Council Mode has been significantly upgraded, the AutoAgent backend is dramatically faster, and the staged changes review system is now precise enough that you will wonder how you worked without it.
Download Calliope AI IDE v1.5.0
Calliope AI IDE is a VS Code-based AI development environment with five operating modes (Agent, Ask, Plan, Debug, Council), support for 9+ LLM providers, and multi-agent orchestration built in. Zero telemetry. No data collection. Bring your own keys.
Council Mode, where multiple agents with different backends deliberate before committing to a solution, has been significantly upgraded in this release.
Councils can now be configured with named roles. Assign one agent as Architect, one as Security Reviewer, one as Performance Analyst. Each role gets a tailored system prompt and can be backed by a different model. A senior engineer reviewing a Council session will see clearly structured position statements from each agent, a synthesis, and a final recommendation with dissent noted where it exists.
Councils also now support async deliberation. Kick off a Council session, keep coding, and get a notification when the agents have reached a conclusion. For large architectural decisions, this is a game changer.
The AutoAgent backend has been completely rewritten for v1.5.0. Task decomposition is now parallel rather than sequential, meaning complex multi-step agent tasks complete in roughly half the time. For autonomous refactoring runs and full feature implementation tasks, the difference is immediately noticeable.
The staged changes review system now operates at line-level granularity rather than file-level. Every edit an agent proposes shows a tight, contextual diff with the surrounding code. You can accept or reject individual hunks, not just whole files. For large codebases where agents touch many files in a single session, this gives you exactly the control you need.
v1.5.0 adds native support for DeepSeek R2 and xAI Grok 3 as LLM backends, bringing the total provider count to 11. DeepSeek R2 in particular is an excellent choice for Plan Mode on complex architectural tasks. Grok 3 handles rapid-fire Ask Mode queries at low cost.
The Git Worktree sandbox mode now properly handles monorepos with nested submodules. Previously, agents working in a worktree on a monorepo would occasionally lose track of submodule state. That is fixed. Worktree cleanup on session end is also more reliable.
Plan Mode now supports configurable approval gates specifically for external API calls and shell commands. You can allow agents to read and write files freely while requiring explicit approval before any network request or shell execution. This is the right default for most production codebases.
top_p error with Claude models (reported by julatec, issue #5
) – Users running Claude Opus 4.5 and other Anthropic models were hitting 400: top_p cannot be set to -1 for this model on every agent call. The IDE was passing an invalid default parameter that Anthropic rejects. Fixed in v1.5.0. Thanks to Jose for the detailed report including logs.Download Calliope AI IDE v1.5.0
Available for macOS (Apple Silicon and Intel) and Windows. Free to use. Bring your own API keys for any supported provider.
v1.6.0 will introduce persistent agent memory across sessions, a new Code Archaeology mode for understanding unfamiliar codebases, and tighter Zentinelle integration for enterprise compliance workflows.

The Last Mile Is the Operator The first four parts of this series built the substrate: foundation, fleet, multi-fleet …

A Short Story About Why the Stack Has the Shape It Does Every platform has an origin story. Most of them are forgotten …