@@ -637,7 +637,7 @@ as task prompts to the harnesses.
637637| P7.1 | Implement sequential execution | ` quorum.go ` | 3h |
638638| P7.2 | Add early exit optimization | ` quorum.go ` | 2h |
639639
640- ** Deliverable** : ` --cost-mode ` runs harnesses sequentially with early exit.
640+ ** Deliverable** : ` --cost-optimized ` runs harnesses sequentially with early exit.
641641
642642### Phase 8: Statistics Tracking (2 tasks)
643643
@@ -669,7 +669,7 @@ Quorum Flags:
669669 --quorum <strategy|N> Quorum strategy: any, majority, unanimous, or number
670670 (default: none - single harness mode)
671671 --harnesses <list> Comma-separated harness names (supports name@persona)
672- --cost-mode Run harnesses sequentially, stop on quorum
672+ --cost-optimized Run harnesses sequentially, stop on quorum
673673 --escalate Pause for human review on conflict
674674 --prefer <harness> Use this harness response on conflict
675675 --similarity <float> Semantic similarity threshold (default: 0.95)
@@ -685,7 +685,7 @@ dun loop --harnesses claude,gemini,codex --quorum 2
685685dun loop --harnesses claude,gemini --quorum unanimous
686686
687687# Cost-optimized: stop when 2 agree
688- dun loop --harnesses claude,gemini,codex --quorum 2 --cost-mode
688+ dun loop --harnesses claude,gemini,codex --quorum 2 --cost-optimized
689689
690690# With escalation on conflict
691691dun loop --harnesses claude,gemini --quorum unanimous --escalate
@@ -751,7 +751,7 @@ dun synth --task \"Write the quorum spec\" --harnesses codex@architect,claude@cr
751751
752752| Risk | Impact | Likelihood | Mitigation |
753753| ------| --------| ------------| ------------|
754- | 3x cost increase with quorum | Unexpected bills | High | Clear documentation, cost-mode default |
754+ | 3x cost increase with quorum | Unexpected bills | High | Clear documentation, cost-optimized default |
755755| User confusion on conflict resolution | Stuck loops | Medium | Good defaults, clear prompts |
756756| Stats storage grows unbounded | Disk usage | Low | Retention policy, compaction |
757757
0 commit comments