opencode-swarm 6.18.1 → 6.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/dist/cli/index.js +6644 -6648
- package/dist/commands/index.d.ts +2 -1
- package/dist/commands/knowledge.d.ts +5 -0
- package/dist/commands/promote.d.ts +10 -0
- package/dist/hooks/adversarial-detector.d.ts +19 -0
- package/dist/hooks/delegation-sanitizer.d.ts +24 -0
- package/dist/hooks/hive-promoter.d.ts +15 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/knowledge-reader.d.ts +5 -1
- package/dist/index.js +2730 -3336
- package/dist/types/events.d.ts +55 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -708,6 +708,37 @@ These hooks are advisory (warnings only) and help maintain workflow discipline d
|
|
|
708
708
|
|
|
709
709
|
---
|
|
710
710
|
|
|
711
|
+
## v6.19 Features
|
|
712
|
+
|
|
713
|
+
### Critic Sounding Board
|
|
714
|
+
Before escalating to the user, the Architect consults the critic in SOUNDING_BOARD mode. The critic returns one of four verdicts: UNNECESSARY, REPHRASE, APPROVED, or RESOLVE.
|
|
715
|
+
|
|
716
|
+
### Escalation Discipline
|
|
717
|
+
Three-tier escalation hierarchy ensures systematic problem resolution:
|
|
718
|
+
1. **Tier 1**: Self-resolve using existing context
|
|
719
|
+
2. **Tier 2**: Critic consultation via sounding board
|
|
720
|
+
3. **Tier 3**: User escalation (requires critic APPROVED)
|
|
721
|
+
|
|
722
|
+
### Retry Circuit Breaker
|
|
723
|
+
After 3 coder rejections, the Architect intervenes to simplify the approach rather than adding more logic.
|
|
724
|
+
|
|
725
|
+
### Intent Reconstruction
|
|
726
|
+
The mega-reviewer reconstructs developer intent from task specs and diffs before evaluating changes.
|
|
727
|
+
|
|
728
|
+
### Complexity-Scaled Review
|
|
729
|
+
Changes classified as TRIVIAL, MODERATE, or COMPLEX receive appropriate review depth:
|
|
730
|
+
- TRIVIAL → Tier 1 only
|
|
731
|
+
- MODERATE → Tiers 1-2
|
|
732
|
+
- COMPLEX → All three tiers
|
|
733
|
+
|
|
734
|
+
### meta.summary Convention
|
|
735
|
+
Agents include one-line summaries in state events for downstream consumption by other agents.
|
|
736
|
+
|
|
737
|
+
### Role-Relevance Tagging
|
|
738
|
+
Agents prefix outputs with [FOR: agent1, agent2] tags to prepare for v6.20's automatic context filtering.
|
|
739
|
+
|
|
740
|
+
---
|
|
741
|
+
|
|
711
742
|
## Testing
|
|
712
743
|
|
|
713
744
|
6,000+ tests. Unit, integration, adversarial, and smoke. Zero additional test dependencies.
|