Hey community! 👋
I built ORCH — an open-source CLI orchestrator that coordinates teams of AI coding agents from the terminal.
When running multiple AI agents (Claude Code, Codex, Cursor) simultaneously on a project, coordination becomes the bottleneck. ORCH solves this:
npm install -g @oxgeneral/orch
orch agent add "architect" --adapter claude --model claude-opus-4-6
orch agent add "coder" --adapter codex
orch task add "Design new feature" -p 1 --assignee architect
orch task add "Implement feature" -p 2 --assignee coder --scope "src/feature/**"
orch tui # live TUI dashboard showing all agents and tasks
todo → in_progress → review → done with auto-retry on failure1,657 passing tests · TypeScript strict · MIT · https://github.com/oxgeneral/ORCH
Happy to discuss! 🚀
Alex introduces ORCH, an open-source CLI tool designed to coordinate AI coding agents like Claude Code, Codex, and Cursor. The tool aims to streamline the process of managing multiple agents on a project by offering features like state management, scope locking, and inter-agent messaging. Alex invites the community to discuss the tool's capabilities.