MAGI EX
Multi-model brainstorming panel. Spawns Scientist, Mother, and Woman teammates backed by Claude Opus, OpenAI Codex, and Google Gemini to explore a question or topic in parallel, then consolidates their proposals for the user.
Checklist
Follow these steps in order.
- Clarify the question
- Set up agent team
- Parallel exploration
- Consolidate and present options
- Wait for user decision (write a plan, debate, or done)
- Tear down agent team
Workflow
dot
digraph magi_ex {
rankdir=TB;
node [shape=box, style=rounded];
clarify [label="Lead clarifies question\n(AskUserQuestion if underspecified)"];
setup [label="Setup 3-agent team\n(Claude, Codex, Gemini)"];
explore [label="Teammates explore in parallel\n(each delegates to its model)"];
consolidate [label="Lead consolidates proposals\n+ attributes model source"];
present [label="Present options to user\n(AskUserQuestion: Write a plan / Debate / Done)"];
decide [label="User decision" shape=diamond];
debate [label="Debate round\n(lead broadcasts, each critiques via its model)"];
teardown [label="Shut down agent team"];
handoff [label="Handoff to writing-plans"];
clarify -> setup;
setup -> explore;
explore -> consolidate;
consolidate -> present;
present -> decide;
decide -> debate [label="debate"];
decide -> teardown [label="done"];
decide -> teardown [label="write a plan"];
teardown -> handoff [label="write a plan"];
debate -> present;
}
The Process
User Question
<user_question>
$ARGUMENTS
</user_question>
Clarify
Before spawning teammates, the lead asks via
to understand the idea or topic:
- Ask questions one at a time to refine the idea
- Prefer multiple choice questions when possible, but open-ended is fine too
- Only one question per message
- Focus on understanding: purpose, constraints, success criteria
Skip if the question is already clear and actionable. Include all clarified context in teammate spawn prompts.
Setup
- Read all 3 template files: MAGI-1.md, MAGI-2.md, MAGI-3.md
- Read both reference files: codex.md, gemini.md
- with a descriptive team name (e.g., )
- Spawn all 3 teammates in a single message (3 parallel calls):
| Teammate | | | Prompt includes |
|---|
| Scientist | | | MAGI-1.md template + user question + clarified context |
| Mother | | | MAGI-2.md template + codex.md reference + user question + clarified context |
| Woman | | | MAGI-3.md template + gemini.md reference + user question + clarified context |
- Set on each call to the team name from above
- Teammates don't inherit the lead's conversation history -- include all context in the spawn prompt
Explore in Parallel
Teammates begin working immediately upon spawning. The lead's role is coordination only:
- Wait for teammates to send their proposals via
- Forward teammate clarifying questions to the user via -- note which teammate (and which model) asked
- Your role is to wait and coordinate -- teammates produce all proposals
Each teammate follows their own model-specific checklist defined in their template.
Consolidate + Present
Lead collects all proposals from the 3 teammates, then:
- Deduplicates similar proposals (attributing to all teammates/models that proposed it)
- Groups by theme if there are many proposals
- Presents each option with:
- Which teammate(s) and model(s) proposed it (e.g., "Scientist [Opus]", "Mother [Codex]")
- Trade-off analysis from each perspective
- Who tagged it as their top pick and why
- Asks the user via to select an option (one option per choice)
- Asks the user via what to do next:
- Write a plan -- triggers teardown + handoff to with the selected option
- Debate -- teammates critique each other's proposals (triggers debate round below)
- Done -- shut down the agent team, no further action
Optional Debate (user-triggered)
Only runs if the user requests it. When triggered:
- Lead broadcasts the consolidated option list to all 3 teammates via
- Each teammate sends the proposals to their model for critique:
- Scientist (Opus): reasons directly about other proposals
- Mother (Codex): calls with saved
- Woman (Gemini): pipes full context + proposals to
- Each teammate sends their model's critique back to the lead via
- Lead collects updated stances and re-presents to the user
One round per debate request. The user can trigger multiple sequential debates.
Teardown
When to tear down
- User selects Write a plan
- User selects Done
Keep teammates alive during the debate loop
Tear down only after the user selects Write a plan or Done.
Shutdown sequence
- to each teammate (Scientist, Mother, Woman)
- Wait for all shutdown approvals
- (fails if teammates are still active)
Handoff (write a plan path only)
After teardown, invoke
skill with the chosen option(s) as context.