CLI for orchestrating structured debates between AI agents
Project description
bl-agent-debater
┌────────────────────────────────────────────────────────────────────────┐
│ │
│ ██████╗ ██╗ ██████╗ ███████╗██████╗ █████╗ ████████╗███████╗ │
│ ██╔══██╗██║ ██╔══██╗██╔════╝██╔══██╗██╔══██╗╚══██╔══╝██╔════╝ │
│ ██████╔╝██║█████╗██║ ██║█████╗ ██████╔╝███████║ ██║ █████╗ │
│ ██╔══██╗██║╚════╝██║ ██║██╔══╝ ██╔══██╗██╔══██║ ██║ ██╔══╝ │
│ ██████╔╝███████╗ ██████╔╝███████╗██████╔╝██║ ██║ ██║ ███████╗ │
│ ╚═════╝ ╚══════╝ ╚═════╝ ╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ │
│ │
│ Structured debates between AI agents │
│ │
└────────────────────────────────────────────────────────────────────────┘
One AI gives one perspective. Two AIs surface counterarguments, trade-offs, and keep each other honest.
When to use what:
- Claude-only debates? Use claude-code-cookbook directly — it has richer capabilities with subagents and built-in roles.
- Multi-agent debates? Use bl-debater — it bridges different AI systems (Claude + Codex, Claude + GPT, etc.) via a file-based protocol.
Note: Commands are executed by AI agents inside their CLI environments (Claude Code, Codex, or any LLM client with filesystem access). You ask your AI to run the commands — it handles the debate.
Demo
Example: debates/auth.md
# Debate: auth
**Participants:** architect vs security
**Consensus:** 80%
---
## Round 1 - Architect
### Position
- JWTs are stateless, scale horizontally without session storage
### Key Points
- No database lookup per request
- Easy to distribute across microservices
### Proposal
- Use JWTs with 24-hour expiry
**Agreement: 0%**
[WAITING_SECURITY]
---
## Round 1 - Security
### Strengths
- Agree JWTs scale better horizontally
### Concerns
- JWTs can't be revoked without a blocklist
- 24-hour expiry is too long if credentials leak
### Proposal
- Short-lived access tokens (15 min) + server-side refresh tokens
**Agreement: 60%**
[WAITING_ARCHITECT]
---
## Round 2 - Architect
### Strengths
- Valid point on revocation — refresh tokens solve this
### Concerns
- None remaining
### Proposal
- Accept: 15-min JWTs + server-side refresh tokens
**Agreement: 85%**
[PROPOSE_FINAL]
## Final Synthesis
Short-lived JWTs (15 min) for stateless auth, with server-side
refresh tokens for revocation. Best of both approaches.
[CONFIRM?]
---
## Round 2 - Security
Confirmed.
[CONFIRMED]
[DEBATE_COMPLETE]
Installation
pip install bl-agent-debater
Or install from source:
git clone https://github.com/beyond-logic-labs/bl-agent-debater.git
cd bl-agent-debater
pip install -e .
Commands
| Command | Description |
|---|---|
bl-debater start <name> -p "..." --as <role> --vs <role> |
Create debate |
bl-debater start ... --context <file-or-url> |
Include context (repeatable) |
bl-debater respond <name> --as <role> --template |
Respond with $EDITOR |
bl-debater join <name> --as <role> |
Join existing debate |
bl-debater wait <name> --as <role> |
Wait for your turn |
bl-debater watch <name> |
Live terminal UI |
bl-debater export <name> --format github-comment |
Export synthesis |
bl-debater status <name> |
Check debate status |
bl-debater list |
List all debates |
bl-debater roles |
Show available roles |
Debates Directory
--debates-dir is a global option and must come before the subcommand:
bl-debater --debates-dir /path/to/debates join auth --as architect
Tip: run bl-debater status <name> first to confirm participants and whose turn it is.
Context Injection
Include file content or URLs directly in the problem statement:
bl-debater start pr-review -p "Review this PR" \
--as claude --vs codex \
--context docs/adr/0004.md \
--context https://github.com/org/repo/pull/7.diff
Editor Integration
Use your $EDITOR to write responses with pre-filled templates:
bl-debater respond auth --as architect --template
The template includes the correct round header, sections, and validation on save.
Export Synthesis
Export completed debate synthesis for use elsewhere:
bl-debater export auth --format github-comment # For PR comments
bl-debater export auth --format json # For automation
bl-debater export auth --format markdown -o REVIEW.md
Roles
Built-in roles (Markdown and YAML formats supported):
| Role | Focus |
|---|---|
architect |
System design, scalability |
security |
Vulnerabilities, threat modeling |
frontend |
UI/UX, accessibility |
backend |
APIs, databases |
performance |
Optimization, caching |
qa |
Testing, edge cases |
reviewer |
Code quality |
analyzer |
Requirements, trade-offs |
mobile |
iOS/Android, offline-first |
Custom Roles (YAML)
Create custom roles with rich metadata:
# roles/security-reviewer.yaml
name: security-reviewer
description: OWASP-focused security specialist
expertise:
- OWASP Top 10
- Authentication/Authorization
- Secrets management
evaluation_criteria:
- Does the code handle untrusted input safely?
- Are secrets properly managed?
style: Direct and thorough
consensus_weight: 1.0
Role lookup paths (in priority order):
./roles/— Project-specific roles~/.bl-debater/roles/— User global roles- Package bundled roles
Options
| Flag | Default | Description |
|---|---|---|
--agreement |
80 | Consensus threshold % |
--debates-dir |
./debates |
Debate files directory |
--timeout |
60 | Wait timeout (seconds) |
--context |
- | Include file or URL content (repeatable) |
--format |
github-comment |
Export format (github-comment, markdown, json) |
Protocol
- Debates stored in
debates/<name>.md - Each response ends with
[WAITING_<ROLE>] waitcommand polls until marker matches your role- At consensus:
[PROPOSE_FINAL]→[CONFIRM?]+[WAITING_<ROLE>]→[CONFIRMED]→[DEBATE_COMPLETE] - Timeouts:
[TIMEOUT]ends abandoned debates
Live Watch Mode
Watch debates unfold in real-time from a third terminal:
bl-debater watch auth
bl-debater watch auth --plain # Simple single-line output
Features:
- Color-coded roles — Each participant gets a distinct color
- Progress bar — Visual consensus tracking toward threshold
- Live updates — Auto-refreshes as agents write responses
- Animated spinner — Shows which role is being waited on
- Statistics — Duration, word count, round tracking
- Environment-aware — Automatic plain output for CI/non-TTY
▶ BL-DEBATER LIVE │ auth.md
──────────────────────────────────────────
● ARCHITECT vs ● SECURITY │ Round 2
Consensus: [████████████░░░░░░░░] 60% → 80%
──────────────────────────────────────────
╭─ Round 2 • ARCHITECT ───────────────────╮
│ Strengths │
│ • Valid point on revocation │
│ │
│ Concerns │
│ • None remaining │
│ │
│ Agreement: 85% │
╰─────────────────────────────────────────╯
⠹ Waiting for SECURITY...
Watching: 2m 15s │ Ctrl+C to exit
Plain mode (auto-enabled in CI, non-TTY, or with NO_COLOR):
[auth] Round 2 | Waiting: SECURITY | Agreement: 60% -> 80% | 12:34:56
Documentation
docs/AGENT_GUIDE.md— Instructions for AI agentsCONTRIBUTING.md— How to contribute
Limitations
- Single machine only (file-based)
- 2-second polling interval
- Manual command invocation required
- No conflict resolution for simultaneous writes
Status
Experimental — Working prototype exploring multi-agent debate patterns.
The vision: evolve into something like claude-code-cookbook but for multi-agent collaboration. Ready-to-use debate templates, role libraries, consensus strategies.
Credits
- Role prompts adapted from claude-code-cookbook by wasabeef
License
MIT
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bl_agent_debater-0.2.0.tar.gz.
File metadata
- Download URL: bl_agent_debater-0.2.0.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5fae98409c9491632d2b207f26f6e1a31051a51b9271122194abe23a76807e9
|
|
| MD5 |
bc9ffe334b23ab9412dc13b2401992fe
|
|
| BLAKE2b-256 |
b82136de7dc56b8ea255d5597addf522cd25994cf3f5ad62a7dc392c37538a45
|
Provenance
The following attestation bundles were made for bl_agent_debater-0.2.0.tar.gz:
Publisher:
publish.yml on beyond-logic-labs/bl-agent-debater
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bl_agent_debater-0.2.0.tar.gz -
Subject digest:
a5fae98409c9491632d2b207f26f6e1a31051a51b9271122194abe23a76807e9 - Sigstore transparency entry: 787230028
- Sigstore integration time:
-
Permalink:
beyond-logic-labs/bl-agent-debater@23c5beef97b18c5e757a8e5912020e8062808df5 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/beyond-logic-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@23c5beef97b18c5e757a8e5912020e8062808df5 -
Trigger Event:
release
-
Statement type:
File details
Details for the file bl_agent_debater-0.2.0-py3-none-any.whl.
File metadata
- Download URL: bl_agent_debater-0.2.0-py3-none-any.whl
- Upload date:
- Size: 37.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d049672a1679a873b65256f4d33592727b14bbe58c49b45d946ed1148003d428
|
|
| MD5 |
d989407a24cc7a3fa37cfa34f95a46a3
|
|
| BLAKE2b-256 |
30e236565afac12fbc10da550f2d20a41f7ccf544e7860aa997bbf93937efa69
|
Provenance
The following attestation bundles were made for bl_agent_debater-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on beyond-logic-labs/bl-agent-debater
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bl_agent_debater-0.2.0-py3-none-any.whl -
Subject digest:
d049672a1679a873b65256f4d33592727b14bbe58c49b45d946ed1148003d428 - Sigstore transparency entry: 787230061
- Sigstore integration time:
-
Permalink:
beyond-logic-labs/bl-agent-debater@23c5beef97b18c5e757a8e5912020e8062808df5 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/beyond-logic-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@23c5beef97b18c5e757a8e5912020e8062808df5 -
Trigger Event:
release
-
Statement type: