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.
- package/.opencode/skills/issue-tracer/SKILL.md +7 -6
- package/.opencode/skills/issue-tracer/references/install.md +5 -3
- package/.opencode/skills/swarm-pr-feedback/SKILL.md +87 -13
- package/.opencode/skills/swarm-pr-review/SKILL.md +313 -109
- package/.opencode/skills/swarm-pr-review/references/parser-dry-run.md +5 -3
- package/.opencode/skills/swarm-pr-review/references/prompt-templates.md +5 -5
- package/dist/background/candidate-parser.d.ts +1 -0
- package/dist/background/pending-delegations.d.ts +7 -0
- package/dist/background/workspace-snapshot.d.ts +20 -0
- package/dist/cli/{curator-llm-factory-ffseqhr4.js → curator-llm-factory-4t2h2p60.js} +3 -3
- package/dist/cli/{curator-zmff7bha.js → curator-qqd1fvvg.js} +3 -3
- package/dist/cli/{guardrail-explain-n4eyw2ak.js → guardrail-explain-4yg67c3t.js} +4 -4
- package/dist/cli/{hive-promoter-s60fcnq0.js → hive-promoter-14jh86kj.js} +3 -3
- package/dist/cli/{index-mg54y5gc.js → index-40zn444p.js} +38 -1
- package/dist/cli/{index-w3q49fy4.js → index-8cnpsbk5.js} +1 -1
- package/dist/cli/{index-8exjgmrz.js → index-bn3w6ym4.js} +49 -24
- package/dist/cli/{index-0cz1ws47.js → index-ecxwhwz7.js} +2 -0
- package/dist/cli/{index-p3cksay8.js → index-pbw1ncre.js} +4 -4
- package/dist/cli/index.js +3 -3
- package/dist/cli/{pending-delegations-7j8xqg5f.js → pending-delegations-a1bbpp8b.js} +1 -1
- package/dist/cli/{workspace-snapshot-c9pxxt9a.js → workspace-snapshot-aa0ggevw.js} +3 -1
- package/dist/commands/registry.d.ts +1 -1
- package/dist/hooks/pr-workflow-gate.d.ts +45 -1
- package/dist/hooks/pr-workflow-response-gate.d.ts +7 -5
- package/dist/index.js +22 -17
- package/dist/tools/dispatch-lanes.d.ts +5 -0
- package/package.json +1 -1
|
@@ -40,14 +40,16 @@ interface WakeBudget {
|
|
|
40
40
|
suspended: boolean;
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
* Prevent an architect from
|
|
44
|
-
* The text-complete hook
|
|
45
|
-
* durable gate exists;
|
|
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.
|
|
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;
|