feat(council): add D/P (Deterministic/Probabilistic) dual-group mode

- New 'mode' parameter: personality (default) or dp
- D group: grounded, feasibility-first (Freethinker + Arbiter)
- P group: exploratory, reframing-first (Freethinker + Arbiter)
- Meta-Arbiter merges best ideas from both groups
- Full prompt templates for ideation, assessment, bridge, and merge
- Orchestration docs for single-round and multi-round D/P flows
- Inspired by Flynn's dual-council architecture, adapted for OpenClaw subagents
This commit is contained in:
zap
2026-03-05 19:18:44 +00:00
parent 0acd7a2772
commit e08e3d65e9
3 changed files with 315 additions and 19 deletions

View File

@@ -8,11 +8,24 @@
#
# ─── PARAMETERS ────────────────────────────────────────────────────
#
# mode: personality (default) | dp
# flow: parallel (default) | sequential | debate
# rounds: 1 (default) | 2-5
# tier: light (default) | medium | heavy
#
# ─── PARALLEL FLOW ─────────────────────────────────────────────────
# ─── MODE SELECTION ────────────────────────────────────────────────
#
# personality: 3 advisors (Pragmatist, Visionary, Skeptic) + 1 Referee
# - Best for opinion/judgment calls, strategy, brainstorming
# - Diversity comes from personality lenses
#
# dp: 2 groups (D + P), each with Freethinker + Arbiter, + 1 Meta-Arbiter
# - Best for problem-solving, technical design, generating approaches
# - Diversity comes from structural cognitive style
# - Group D = Deterministic (grounded, feasibility-first)
# - Group P = Probabilistic (exploratory, reframing-first)
#
# ─── PERSONALITY MODE: PARALLEL FLOW ──────────────────────────────
#
# Single round (rounds=1):
# 1. Spawn 3 advisors in parallel (sessions_spawn, mode=run)
@@ -32,7 +45,7 @@
# 7. Spawn referee with FULL debate transcript (all rounds)
# 8. Deliver to user
#
# ─── SEQUENTIAL FLOW ──────────────────────────────────────────────
# ─── PERSONALITY MODE: SEQUENTIAL FLOW ───────────────────────────
#
# Single round (rounds=1):
# 1. Spawn advisor 1 → collect output
@@ -45,7 +58,7 @@
# 2. ROUND 2..N: Each advisor sees ALL prior round outputs
# 3. Spawn referee with full thread
#
# ─── DEBATE FLOW ──────────────────────────────────────────────────
# ─── PERSONALITY MODE: DEBATE FLOW ───────────────────────────────
#
# Always multi-round (min 2, default 3):
# 1. ROUND 1: Parallel opening takes
@@ -53,21 +66,76 @@
# 3. ROUND N: Final positions (parallel, full transcript)
# 4. Spawn referee with full debate + evolution notes
#
# ─── D/P MODE: PARALLEL FLOW ─────────────────────────────────────
#
# Single round (rounds=1):
# 1. Spawn D-Freethinker and P-Freethinker in parallel (ideation)
# 2. Collect both sets of ideas
# 3. Spawn D-Arbiter and P-Arbiter in parallel (assessment)
# - D-Arbiter gets D ideas, P-Arbiter gets P ideas
# 4. Collect both shortlists
# 5. Spawn Meta-Arbiter with both group shortlists (merge)
# 6. Deliver to user
#
# Multi-round (rounds=N):
# 1. ROUND 1: Parallel ideation → parallel assessment → bridge packets
# - Bridge = summary of shortlist, assumptions, risks, asks
# 2. ROUND 2..N: Each group receives other's bridge packet
# - Freethinkers revise/extend ideas incorporating bridge info
# - Arbiters re-evaluate with cross-group context
# 3. FINAL: Meta-Arbiter receives final shortlists from both groups
# 4. Deliver to user
#
# Subagent calls per run:
# - Single round: 5 (2 freethinkers + 2 arbiters + 1 meta)
# - Multi-round: 4N + 1 (2 freethinkers + 2 arbiters per round + 1 meta)
#
# ─── D/P MODE: SEQUENTIAL FLOW ───────────────────────────────────
#
# Single round (rounds=1):
# 1. Spawn D-Freethinker → collect ideas
# 2. Spawn D-Arbiter with D ideas → collect shortlist
# 3. Spawn P-Freethinker → collect ideas
# 4. Spawn P-Arbiter with P ideas → collect shortlist
# 5. Spawn Meta-Arbiter with both shortlists → deliver
#
# Note: Less useful for D/P mode since groups are independent.
# Parallel is the natural D/P flow. Sequential is supported but
# doesn't add much because groups don't see each other until the bridge.
#
# ─── MODEL TIER SELECTION ─────────────────────────────────────────
#
# light: advisors=default, referee=default
# medium: advisors=default, referee=stronger (e.g. opus-tier)
# heavy: advisors=stronger, referee=stronger
#
# For D/P mode:
# light: freethinkers=default, arbiters=default, meta=default
# medium: freethinkers=default, arbiters=default, meta=stronger
# heavy: freethinkers=stronger, arbiters=stronger, meta=stronger
#
# ─── SUBAGENT LABELING ────────────────────────────────────────────
#
# Labels follow pattern: council-r{round}-{role}
# Examples: council-r1-pragmatist, council-r2-skeptic, council-referee
# Single-round: council-pragmatist, council-referee (no round prefix)
# Personality mode:
# Labels: council-r{round}-{role}
# Examples: council-r1-pragmatist, council-r2-skeptic, council-referee
# Single-round: council-pragmatist, council-referee (no round prefix)
#
# D/P mode:
# Labels: council-r{round}-{group}-{role}
# Examples: council-r1-d-freethinker, council-r1-p-arbiter, council-meta
# Single-round: council-d-freethinker, council-p-arbiter, council-meta
#
# ─── WORD COUNT GUIDANCE ──────────────────────────────────────────
#
# Round 1 (opening): 200-400 words
# Middle rounds: 200-300 words
# Final round: 150-250 words
# Personality mode:
# Round 1 (opening): 200-400 words
# Middle rounds: 200-300 words
# Final round: 150-250 words
#
# D/P mode:
# Freethinker: 3-5 ideas, 100-200 words each
# Arbiter: Scored shortlist, 50-100 words per idea evaluation
# Meta-Arbiter: 300-500 words total synthesis
#
# This keeps multi-round debates from exploding in token cost.