Autonomous QUorum of Agents - Lightweight coordinator for CLI AI agents
Today I’m releasing Aqua (Autonomous QUorum of Agents), a lightweight CLI tool for coordinating multiple AI coding agents working on the same codebase.

AI coding agents like Claude Code, Codex CLI, and Gemini CLI are powerful - but they’re designed for single-agent use. When you want to parallelize work across multiple agents, things get messy:
Aqua provides a shared coordination layer using a simple SQLite database. Each agent:
# Initialize Aqua in your project
cd my-project
aqua init
aqua setup --all # Adds instructions to CLAUDE.md, AGENTS.md, GEMINI.md
# Add tasks with priorities and dependencies
aqua add "Set up FastAPI project" -p 9
aqua add "Create User model" -p 8 --after "Set up FastAPI project"
aqua add "Build /users endpoints" -p 7
# Spawn 3 AI agents in new terminals
aqua spawn 3
# Watch them work in real-time
aqua watch
Each spawned agent automatically:
You can also let the agent handle everything. Just run aqua setup --all, start your AI agent, and ask it to plan the project:

The agent reads CLAUDE.md, understands Aqua’s capabilities, and handles task breakdown, spawning, and coordination autonomously.
Tasks can depend on other tasks:
aqua add "Write tests" --after "Build API endpoints"
An agent won’t claim “Write tests” until “Build API endpoints” is done.
Prevent edit conflicts:
aqua lock src/handlers.py # Lock before editing
# ... do work ...
aqua unlock src/handlers.py # Release when done
Agents can ask questions and wait for replies:
# Agent 1 asks a question
aqua ask "Should I use Redis or SQLite for caching?" --to @leader --timeout 60
# Leader replies
aqua reply 42 "Use SQLite, it's simpler for this use case"
aqua watch # Real-time dashboard with updates every 2s
aqua logs # Tail event stream (like tail -f)
aqua status --json | jq .tasks
export AQUA_JSON=1 # All commands output JSON
Aqua uses SQLite with WAL mode for concurrent access. There’s no server, no Docker, no Redis - just a single database file in .aqua/aqua.db.
your-project/
.aqua/
aqua.db # SQLite database
worker-1.session # Agent session files
worker-2.session
CLAUDE.md # Instructions for Claude Code
AGENTS.md # Instructions for Codex CLI
GEMINI.md # Instructions for Gemini CLI
pip install aqua-coord
Requires Python 3.10+.
I tried getting Cursor and other IDE agents to play nice with these CLI agents, but I couldn’t successfully do it. This IME will be the biggest unlock, so that’s what I’ll be working on actively.
I believe that as agents become smarter, they will discover ways to use aqua that even I didn’t envision. However, I have some immediate plans for features that I think will enrich aqua:
If you’ve used or even seen the gifs where aqua is in action, you’d have noticed some rough edges and poor comprehension from agents that try to use aqua. These hinder effective utilization and at the same time might waste tokens. To that end, I will constantly be using and pushing bug fixes and QOL improvements. Please update as often as you can!
Aqua is open source under the MIT license.