Skip to main content

Multi-agent AI debate orchestrator — spawns Claude, Gemini, Codex (etc.) CLI agents in tmux panes and runs structured debates, with a web UI and archive browser.

Project description

aidebate

Multi-agent AI debate orchestrator. Spins up Claude Code, Gemini CLI, Codex CLI (and anything else with an interactive REPL) inside tmux panes, runs a structured debate between them, and serves a live web UI plus an archive browser.

status: alpha license: Apache 2.0

Why

You have subscriptions to several AI coding assistants and occasionally want to pit them against each other — or let them cross-examine each other — on a concrete question ("Rust vs Go for this CLI", "Which of these 5 libraries should we pick?", "Is this migration worth it?"). Doing this manually is tedious; aidebate wires it up end to end:

  • Each agent is a long-lived REPL in its own tmux pane (so you can watch them think live, or just see the final verdict).
  • The orchestrator coordinates turns via flag files — agents never step on each other's keystrokes.
  • A moderator agent runs the same way, reads everyone's answers at the end, and writes a verdict.
  • Everything is persisted to disk as rendered Markdown, so every debate leaves a permanent, browsable transcript.

Install

You need tmux, Python 3.10+, and at least one authenticated AI CLI:

Then:

# One-shot (npx-style) with uv:
uvx aidebate serve

# Or persistent install:
pipx install aidebate
debate serve

Or develop from source:

git clone https://github.com/orlenko/aidebate && cd aidebate
python -m venv .venv && .venv/bin/pip install -e ".[dev]"
.venv/bin/debate --help

Quickstart

Web UI (recommended)

debate serve     # http://127.0.0.1:8765

Fill in the form — topic, moderator engine, and one row per debater (role + engine + stance). Click Start. The tiled tmux session spins up in the background and every pane streams into the browser. When it finishes, the verdict renders as proper Markdown and every run joins the "Prior debates" list for future reference.

Command line

debate run \
  --topic "Should we migrate from Framework A to Framework B?" \
  --side pro@claude:"Argue for migrating." \
  --side con@gemini:"Argue for staying." \
  --side auditor@codex:"Neutral cost analysis — no advocacy." \
  --moderator claude \
  --watch

--watch pops open an iTerm2/Terminal window already attached to the debate's tmux session so you can follow along. Without it, use the printed tmux attach -t debate-<timestamp> command.

Other subcommands

Command What it does
debate ls List prior session IDs.
debate attach <id> Print the tmux attach command for a session.
debate kill-all Kill every tmux session whose name starts with debate-.
debate smoke Walking-skeleton test: one agent, one turn, no moderator.

What gets saved

Each run writes to a directory under the platform's user-data dir (macOS: ~/Library/Application Support/aidebate/sessions/). Override with AIDEBATE_HOME=<dir> or --sessions-dir <dir>:

~/Library/Application Support/aidebate/sessions/2026-04-14-120000/
├── session.json                    # manifest: topic, sides, moderator, status, timings
├── chat.jsonl                      # group chat log (one JSON object per line)
├── verdict.md                      # moderator's final ruling
├── agents/
│   ├── pro/                        # each agent's cwd
│   ├── con/
│   └── moderator/
├── phase-1-opening/
│   ├── pro.prompt.md
│   ├── pro.answer.md
│   ├── pro.done
│   └── …
├── phase-2-rebuttal/
└── phase-3-verdict/

How it works

Agents coordinate via flag files, not terminal scraping:

  1. Orchestrator writes phase-N/<role>.prompt.md.
  2. It tells the agent (via tmux send-keys) to read that file and follow it.
  3. The prompt instructs the agent to write its response to <role>.answer.md and then touch '<role>.done'.
  4. Orchestrator polls for the .done flag; when every agent's .done lands, the phase is complete.

The debate runs in three phases:

Phase 1: Opening    — each debater writes their position (parallel)
Phase 2: Rebuttal   — each debater attacks every opponent's opening (parallel)
Phase 3: Verdict    — moderator reads all answers + chat, renders ruling

startup_keys in the adapter config auto-dismiss "trust this folder?" dialogs for each CLI. permission_prompts handle anything else interactive.

Adapters

Adding a new AI CLI is a YAML file under src/aidebate/adapters/:

# src/aidebate/adapters/mynewcli.yaml
name: mynewcli
cmd: "mynewcli --yolo --workspace {session_root}"
submit_key: "Enter"
submit_delay: 0.8
permission_prompts:
  - { match: "Trust this", respond: "" }  # empty respond → just press Enter
  - { match: "\\[y/N\\]",  respond: "y" }
answer_instruction: |
  When you have finished this task, write your full response to:

      {answer_path}

  Then run:

      touch '{done_path}'
startup_keys:
  - { delay: 3.0, key: "Enter" }   # dismiss startup dialogs

The adapter's cmd can reference {session_root} and {agent_cwd}, substituted at spawn time.

Development

.venv/bin/pytest                # run the test suite
.venv/bin/ruff check src tests  # lint

The tests don't require tmux or any AI CLI — they cover adapter loading, side parsing, prompt building, and the FastAPI endpoints that read session state from disk. For end-to-end runs you need the real thing.

License

Apache-2.0. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aidebate-0.1.3.tar.gz (38.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aidebate-0.1.3-py3-none-any.whl (40.6 kB view details)

Uploaded Python 3

File details

Details for the file aidebate-0.1.3.tar.gz.

File metadata

  • Download URL: aidebate-0.1.3.tar.gz
  • Upload date:
  • Size: 38.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aidebate-0.1.3.tar.gz
Algorithm Hash digest
SHA256 2557897fb90fff4dbec21452dc2956f21ae4930050fa947b2b4d50f411df192b
MD5 2cdfe6712825924559158a703f5a7c41
BLAKE2b-256 022b88717e112f072d213bf429bd9435aa9a48ac0359a3fbe3e5de5d74dafe1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aidebate-0.1.3.tar.gz:

Publisher: release.yml on orlenko/aidebate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aidebate-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: aidebate-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 40.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aidebate-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f4fcda45f1566d335b8cf6c0ef7cc6edaf57d8d5cf8afbc8b31f087b434faa67
MD5 d0e3bf04832fcfbb6186aba9e6f50a4a
BLAKE2b-256 8a275ef71825505518c11a9e178b1742298d6830fa8e5fc14bf499091cddee9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aidebate-0.1.3-py3-none-any.whl:

Publisher: release.yml on orlenko/aidebate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page