Phalanx CLI coordinates multiple AI agents for automated code-review cycles

Multi-Agent CLI for Automated Code Review
A developer has open-sourced Phalanx, a command-line interface that coordinates multiple AI agents from different providers to automate the code-review-fix cycle. The tool assigns specific roles to different models: Codex handles the actual coding for speed and throughput, Claude Opus performs code review to catch issues like race conditions and spec drift, and a Claude Sonnet agent orchestrates the entire process.
Key Implementation Details
Users define a team configuration file that assigns models to specific roles, then Phalanx runs the automated review loop. The developer built version 2 of Phalanx using Phalanx itself as a stress test, noting several practical challenges:
- Agents can die mid-task due to context limits
- Timeouts kill long reviews
- Retry logic adds significant complexity
- The review loop runs autonomously once agents remain stable
Codebones: Repository Compression Tool
To address token efficiency issues, the developer created Codebones, a companion tool that compresses repositories into structural maps. Instead of including full implementation bodies, Codebones generates:
- File tree structure
- Function signatures
This allows AI agents to understand the codebase shape without consuming excessive tokens. In testing, Codebones compressed a 177,000-token repository down to 30,000 tokens.
Cost and Limitations
Both tools run on $20/month flat plans with no additional API costs, compared to approximately $750/month the developer was spending on Cursor previously. Several important caveats were noted:
- Rate limits from both AI providers require careful batching
- Task scoping is critical—vague tasks produce poor results
- The approach is overkill for small fixes
- This setup works best for substantial code changes
The developer is exploring whether others are coordinating multiple AI providers or if most developers are sticking with single-provider solutions.
Source Information
Both tools are open source:
- Phalanx: github.com/creynir/phalanx
- Codebones: github.com/creynir/codebones
📖 Read the full source: r/ClaudeAI
👀 See Also

Introducing Aionic Anthology: A Framework for Structuring Claude's AI Tasks
The Aionic Anthology framework organizes Claude's AI tasks by separating context into categories and adding a risk evaluation system to improve task execution.

Rukuzu: Porting a 200,000 Line C++ Graph Database to Rust with Systematic Testing
The Rukuzu project describes a workflow for porting the 200,000-line C++ kuzu embedded graph database to Rust, using a Claude Code custom command to maintain both versions simultaneously and verify correctness through 2,700+ tests.

AgenticStore MCP: Python Toolkit for Claude Desktop with 27 Local Tools
AgenticStore MCP is an open-source Python toolkit that replaces multiple MCP servers with a single installation, giving Claude Desktop 27 local tools including persistent memory, web search, and repo auditing without requiring Docker or Node.js configuration.

Specsmaxxing: Fighting AI Psychosis with YAML Specs and ACAI
Acai.sh introduces Specsmaxxing: a method to combat AI agents losing context by writing requirements in YAML and using numbered Acceptance Criteria for AI (ACAI) that agents reference in code.