-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.yml
More file actions
165 lines (155 loc) Β· 4.72 KB
/
Copy pathconfig.yml
File metadata and controls
165 lines (155 loc) Β· 4.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
swarm_command:
default_scale: "ss-100"
scales:
ss-50:
commanders: 3 # max; runtime selects 2-3 most relevant domains
workers_per_commander: 15 # No squad leads β commanders spawn workers directly
max_depth: 2 # Nexus[0] β Commander[1] β Worker[2]
reviewers: 3
sealed_criteria_count: 6
cost_ceiling_usd: 5.00
timeout_s: 60
total: "~36-52" # 2 commanders = 36, 3 commanders = 52
ss-100:
commanders: 5
workers_per_commander: 15 # No squad leads β commanders spawn workers directly
max_depth: 2 # Nexus[0] β Commander[1] β Worker[2]
reviewers: 8
sealed_criteria_count: 8
cost_ceiling_usd: 10.00
timeout_s: 75
total: ~89
ss-250:
commanders: 5
squad_leads_per_commander: 10
workers_per_squad_lead: 5
max_depth: 3 # Nexus[0] β Commander[1] β Squad Lead[2] β Worker[3]
reviewers: 10
sealed_criteria_count: 10
cost_ceiling_usd: 20.00
timeout_s: 90
total: ~316
consensus:
threshold_consensus: 0.70
threshold_majority: 0.50
formula_weights:
confidence: 0.40
evidence: 0.30
scope: 0.15
coverage: 0.15
conflict_penalty_cap: 0.30
depth_guard:
max_spawn_depth: 3 # SS-250 max; SS-50/SS-100 use max_depth=2 (no Squad Leads)
max_workers_per_squad_lead: 5
worker_agent_types: ["explore", "task"]
commander_agent_type: "general-purpose"
depth_budget_defaults:
architecture: 10
implementation: 10
testing: 7
integration: 7
documentation: 5
total_squad_cap:
ss-50: 20
ss-100: 40
ss-250: 60
personality_modes:
balanced:
worker_count: 5
timeout_factor: 1.0
model_tier: "mixed"
retry_budget: 1
thorough:
worker_count: 5
timeout_factor: 1.5
model_tier: "opus_sonnet"
retry_budget: 2
fast:
worker_count: 3
timeout_factor: 0.6
model_tier: "haiku_only"
retry_budget: 0
creative:
worker_count: 4
timeout_factor: 1.0
model_tier: "max_diversity"
retry_budget: 1
cautious:
worker_count: 5
timeout_factor: 1.2
model_tier: "sonnet"
retry_budget: 2
meta_review:
enabled: true
irr_alert_threshold: 0.60
inflation_detection_threshold: 8.5
deflation_detection_threshold: 3.5
herding_std_dev_threshold: 0.5
rubber_stamp_delta_threshold: 0.05
rubber_stamp_min_reviewers: 3
wave_deployment:
enabled: true
strategy: "canary-probe-rest"
waves:
wave_1: 1 # Canary (already exists)
wave_2: 3 # Probe wave β max 3 children
wave_3: "remainder" # All remaining children
inter_wave_delay_s: 2 # Base delay between waves
adaptive_delay:
on_rate_limit: 8 # Extended delay if rate-limit detected
jitter_range_s: [0, 2] # Random jitter added to squad-lead pod launches
gate_check:
proceed_if: "failure_rate < 0.50 AND rate_limited_count == 0"
failure_classes: ["rate_limited", "timeout", "unparseable", "scope_error", "unknown"]
scale_overrides:
ss-50: { nexus_waves: false } # 2-3 commanders β launch in parallel
ss-100: { nexus_waves: false } # 3-5 commanders β launch in parallel
ss-250: { nexus_waves: true, nexus_wave_1: 2, nexus_wave_2: 3 }
circuit_breaker:
commander_failure_threshold: 0.60
worker_failure_threshold: 0.50
timeout_cascade: [90, 60, 40, 30]
cost_ceiling_usd: 20.00
shadow_scoring:
enabled: true
spec_version: "1.0.0"
conformance_level: "L2"
sealed_criteria_count: 10 # max criteria; per-scale overrides in scales section (6/8/10)
hardening:
enabled: true # global default; SS-50 overrides to disabled
max_cycles: 1
threshold: 15 # hardening triggers if score > 15%
scale_overrides:
ss-50:
enabled: false # SS-50: score computed but no fix cycle
categories:
- happy_path
- edge_case
- error_handling
- completeness
models:
commander_pool:
- claude-opus-4.6
- claude-opus-4.5
- claude-opus-4.6-1m
- claude-sonnet-4.6
- claude-sonnet-4.5
- claude-sonnet-4
- gpt-5.4
- gpt-5.2
- gpt-5.1
worker_pool:
- claude-haiku-4.5
- gpt-5.4-mini
- gpt-5-mini
- gpt-4.1
- gpt-5.3-codex
- gpt-5.2-codex
reviewer_pairs:
- [claude-opus-4.6, gpt-5.4]
- [claude-opus-4.5, gpt-5.2]
- [claude-opus-4.6-1m, gpt-5.1]
- [claude-sonnet-4.6, gpt-5.3-codex]
- [claude-sonnet-4.5, gpt-5.2-codex]
- [claude-sonnet-4, gpt-5.4-mini]
- [claude-haiku-4.5, gpt-5-mini]