91 lines
2.4 KiB
YAML
91 lines
2.4 KiB
YAML
name: design_roundtable
|
||
description: >
|
||
The Crimson Leaf board debates their independent design reviews in 2–3
|
||
structured rounds, reaching consensus on required changes before polish.
|
||
|
||
participants:
|
||
- Victor
|
||
- Nolan
|
||
- Sarah
|
||
- Elena
|
||
|
||
iteration_limit: 3
|
||
convergence_signal: "CONSENSUS REACHED"
|
||
|
||
participant_prompt:
|
||
- "= identity.md"
|
||
|
||
sections:
|
||
- agent
|
||
- project
|
||
- history
|
||
- participants
|
||
- participants_prompt
|
||
- rag
|
||
- deliverables
|
||
- message
|
||
- instructions
|
||
|
||
steps:
|
||
- type: boardroom
|
||
loop:
|
||
max_iterations: 3
|
||
condition: until_consensus
|
||
hint: |
|
||
You are {agent.name}.
|
||
{agent.identity}
|
||
|
||
You have the Company Design Specification and all independent reviews above.
|
||
|
||
COMPANY DESIGN UNDER REVIEW: {task.message}
|
||
|
||
YOUR REVIEW:
|
||
{this_agent_review}
|
||
|
||
OTHER REVIEWS:
|
||
[Victor] {victor_review}
|
||
[Nolan] {nolan_review}
|
||
[Sarah] {sarah_review}
|
||
[Elena] {elena_review}
|
||
|
||
Round {task.iteration} of the design review debate.
|
||
|
||
Respond to the other board members' most critical points:
|
||
- Where you agree, say so clearly and move on.
|
||
- Where you disagree, argue your position with specific evidence.
|
||
- If you've changed your mind based on someone's argument, say so.
|
||
|
||
Focus on ACTIONABLE changes. The output of this roundtable will be used
|
||
to polish the design specification before bootstrap.
|
||
|
||
The group must converge on:
|
||
1. Final verdict: GO (proceed to polish) or KILL (abandon this company)
|
||
2. If GO: the exact list of changes to make during polish
|
||
3. Any unresolved risks that must be accepted or mitigated
|
||
|
||
When the group has reached sufficient consensus for the polish step,
|
||
end your response with: CONSENSUS REACHED
|
||
|
||
- type: package
|
||
schema:
|
||
consensus_critique: string
|
||
design_verdict: string
|
||
victor_final: string
|
||
nolan_final: string
|
||
sarah_final: string
|
||
elena_final: string
|
||
key_changes: list
|
||
spawn:
|
||
- task_type: design_polish
|
||
task_name: "Polish Design: {task.message}"
|
||
agent_name: Elena
|
||
context:
|
||
design_spec: "{design_spec}"
|
||
consensus_critique: "{consensus_critique}"
|
||
key_changes: "{key_changes}"
|
||
design_verdict: "{design_verdict}"
|
||
victor_final: "{victor_final}"
|
||
nolan_final: "{nolan_final}"
|
||
sarah_final: "{sarah_final}"
|
||
elena_final: "{elena_final}"
|