opencode-swarm 7.109.0 → 7.109.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.
Files changed (29) hide show
  1. package/.opencode/skills/critic-gate/SKILL.md +2 -0
  2. package/.opencode/skills/engineering-conventions/SKILL.md +45 -0
  3. package/.opencode/skills/execute/SKILL.md +1 -0
  4. package/.opencode/skills/swarm-pr-feedback/SKILL.md +47 -0
  5. package/dist/cli/{core-vev13ej2.js → core-mbd2g302.js} +5 -1
  6. package/dist/cli/{curator-3efwdf9x.js → curator-6p9tpprq.js} +3 -3
  7. package/dist/cli/{curator-llm-factory-nttpcx4b.js → curator-llm-factory-wqbm9mwr.js} +3 -3
  8. package/dist/cli/{evidence-summary-service-j7jwf20f.js → evidence-summary-service-8tasw2tt.js} +1 -1
  9. package/dist/cli/{guardrail-explain-e85gbj0r.js → guardrail-explain-ynge4ww3.js} +4 -4
  10. package/dist/cli/{hive-promoter-rc6z2x8f.js → hive-promoter-qh2rh8x2.js} +3 -3
  11. package/dist/cli/{index-1mjzvkzj.js → index-3qwaydq1.js} +4 -4
  12. package/dist/cli/{index-f1qyj61w.js → index-3yk9196e.js} +40 -3
  13. package/dist/cli/{index-3e7jajwe.js → index-8a8b5wjf.js} +1 -1
  14. package/dist/cli/{index-vb5t1kvs.js → index-cqbqynzp.js} +10 -10
  15. package/dist/cli/{index-wfq4r95s.js → index-j2v3w1ds.js} +7 -1
  16. package/dist/cli/index.js +3 -3
  17. package/dist/config/index.d.ts +1 -0
  18. package/dist/config/qa-gate-pipeline.d.ts +67 -0
  19. package/dist/config/worktree-isolation-config.d.ts +10 -0
  20. package/dist/hooks/delegation-gate/worktree-isolation.d.ts +4 -2
  21. package/dist/hooks/delegation-gate.d.ts +1 -0
  22. package/dist/hooks/guardrails/index.d.ts +1 -1
  23. package/dist/hooks/guardrails/tool-before.d.ts +5 -0
  24. package/dist/index.js +39 -35
  25. package/dist/plan/ledger.d.ts +60 -0
  26. package/dist/tools/save-plan.d.ts +24 -0
  27. package/dist/worktree/core.d.ts +58 -7
  28. package/dist/worktree/index.d.ts +1 -1
  29. package/package.json +1 -1
@@ -32,6 +32,11 @@ export interface ToolBeforeContext {
32
32
  authorityConfig: AuthorityConfig | undefined;
33
33
  /** Shared consecutiveNoToolTurns Map (also used by messagesTransform) */
34
34
  consecutiveNoToolTurns: Map<string, number>;
35
+ /**
36
+ * Configured swarm worktree-dir override(s), if any. Treated as additional
37
+ * trusted roots when exempting `git worktree remove --force` (issue #1708).
38
+ */
39
+ worktreeBaseDirOverrides?: string[];
35
40
  }
36
41
  /**
37
42
  * Creates a toolBefore handler with the given shared context.