multiagentdebate
Facilitate structured multi-agent debates with arguments, rebuttals, and judgments across multiple rounds to enable diverse AI personas to engage in formal debate and collaborative problem-solving.
Instructions
Structured multi‑persona debate tool.
Call sequence (typical):
Each persona registers once with action:"register".
Personas alternate action:"argue" (fresh point) or "rebut" (counter a targetAgentId).
A special persona (or either side) issues action:"judge" with a verdict text (first line should be "pro", "con", or "inconclusive").
Set needsMoreRounds:false only when the debate is finished and a verdict stands.
Parameters:
agentId (string) : "pro", "con", "judge", or any custom ID
round (int ≥1) : Debate round number
action (string) : "register" | "argue" | "rebut" | "judge"
content (string, optional) : Argument text or verdict
targetAgentId (string opt.) : Agent being rebutted (only for action:"rebut")
needsMoreRounds (boolean) : True if additional debate rounds desired
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | Yes | ||
| round | Yes | ||
| action | Yes | ||
| content | No | ||
| targetAgentId | No | ||
| needsMoreRounds | Yes |