opencode-swarm 7.126.6 → 7.127.1

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.
Files changed (27) hide show
  1. package/.opencode/skills/issue-tracer/SKILL.md +7 -6
  2. package/.opencode/skills/issue-tracer/references/install.md +5 -3
  3. package/.opencode/skills/swarm-pr-feedback/SKILL.md +87 -13
  4. package/.opencode/skills/swarm-pr-review/SKILL.md +313 -109
  5. package/.opencode/skills/swarm-pr-review/references/parser-dry-run.md +5 -3
  6. package/.opencode/skills/swarm-pr-review/references/prompt-templates.md +5 -5
  7. package/dist/background/candidate-parser.d.ts +1 -0
  8. package/dist/background/pending-delegations.d.ts +7 -0
  9. package/dist/background/workspace-snapshot.d.ts +20 -0
  10. package/dist/cli/{curator-llm-factory-ffseqhr4.js → curator-llm-factory-4t2h2p60.js} +3 -3
  11. package/dist/cli/{curator-zmff7bha.js → curator-qqd1fvvg.js} +3 -3
  12. package/dist/cli/{guardrail-explain-n4eyw2ak.js → guardrail-explain-4yg67c3t.js} +4 -4
  13. package/dist/cli/{hive-promoter-s60fcnq0.js → hive-promoter-14jh86kj.js} +3 -3
  14. package/dist/cli/{index-mg54y5gc.js → index-40zn444p.js} +38 -1
  15. package/dist/cli/{index-w3q49fy4.js → index-8cnpsbk5.js} +1 -1
  16. package/dist/cli/{index-8exjgmrz.js → index-bn3w6ym4.js} +49 -24
  17. package/dist/cli/{index-0cz1ws47.js → index-ecxwhwz7.js} +2 -0
  18. package/dist/cli/{index-p3cksay8.js → index-pbw1ncre.js} +4 -4
  19. package/dist/cli/index.js +3 -3
  20. package/dist/cli/{pending-delegations-7j8xqg5f.js → pending-delegations-a1bbpp8b.js} +1 -1
  21. package/dist/cli/{workspace-snapshot-c9pxxt9a.js → workspace-snapshot-aa0ggevw.js} +3 -1
  22. package/dist/commands/registry.d.ts +1 -1
  23. package/dist/hooks/pr-workflow-gate.d.ts +45 -1
  24. package/dist/hooks/pr-workflow-response-gate.d.ts +7 -5
  25. package/dist/index.js +22 -17
  26. package/dist/tools/dispatch-lanes.d.ts +5 -0
  27. package/package.json +1 -1
@@ -40,14 +40,16 @@ interface WakeBudget {
40
40
  suspended: boolean;
41
41
  }
42
42
  /**
43
- * Prevent an architect from bypassing PR obligations by simply emitting text.
44
- * The text-complete hook replaces every architect-session text part while the
45
- * durable gate exists; session.idle then mechanically resumes that session.
43
+ * Prevent an architect from masquerading a premature text output as a terminal
44
+ * verdict. The text-complete hook prepends a workflow-active banner to every
45
+ * architect-session text part while the durable gate exists; the model's
46
+ * original text is preserved below the banner. session.idle then mechanically
47
+ * resumes that session.
46
48
  *
47
49
  * The resume loop is bounded (see DEFAULT_MAX_CONSECUTIVE_UNPRODUCTIVE_WAKES)
48
50
  * so a session that cannot make progress suspends instead of spinning
49
- * forever. `textComplete` keeps rewriting text after suspension so the
50
- * user-visible surface always names the recovery path.
51
+ * forever. The banner always carries suspension/interruption recovery notices
52
+ * so the user-visible surface always names the recovery path.
51
53
  */
52
54
  export declare function createPrWorkflowResponseGate(options: {
53
55
  directory: string;