/install evez-debate-framework
Multi-Agent Debate Framework
Multiple agents debate topics to reach stronger conclusions through adversarial reasoning.
Quick Start
from debate import Debate, Agent, Judge
debate = Debate("Should we use microservices?")
debate.add_agent(Agent("pro", stance="support", model="gpt-4o"))
debate.add_agent(Agent("con", stance="oppose", model="claude-sonnet-4"))
debate.add_agent(Agent("synth", stance="synthesize", model="gemini-2.5-pro"))
debate.set_judge(Judge(criteria=["evidence", "logic", "completeness"]))
result = debate.run(rounds=3)
# Returns: winner, consensus, key_arguments, confidence
How It Works
- Proposition: Pro agent argues for the topic
- Opposition: Con agent argues against
- Rebuttal: Each agent responds to the other's points
- Synthesis: Synth agent finds common ground
- Judgment: Judge evaluates all arguments and declares outcome
Debate Config
Debate(
topic="Your question",
rounds=3, # Number of debate rounds
max_words_per_turn=500, # Limit argument length
convergence_threshold=0.7, # Auto-stop when consensus reached
judge_criteria=["evidence", "logic", "novelty", "completeness"],
)
Agent Stances
support— Argues in favoroppose— Argues againstsynthesize— Finds middle grounddevil_advocate— Argues weakest points to strengthen themexpert— Provides domain-specific knowledge
Judge
Evaluates arguments on configurable criteria and produces:
- Winner per round
- Overall winner
- Consensus points
- Unresolved issues
- Confidence score
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install evez-debate-framework - After installation, invoke the skill by name or use
/evez-debate-framework - Provide required inputs per the skill's parameter spec and get structured output
What is Evez Debate Framework?
Framework where multiple AI agents debate to reach better conclusions through adversarial reasoning. Use when building multi-agent systems, consensus-seeking... It is an AI Agent Skill for Claude Code / OpenClaw, with 82 downloads so far.
How do I install Evez Debate Framework?
Run "/install evez-debate-framework" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Evez Debate Framework free?
Yes, Evez Debate Framework is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Evez Debate Framework support?
Evez Debate Framework is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Evez Debate Framework?
It is built and maintained by Evez666 (@evezart); the current version is v1.0.0.