opencode-swarm 7.125.4 → 7.125.5
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/swarm-pr-feedback/SKILL.md +15 -0
- package/.opencode/skills/swarm-pr-review/SKILL.md +34 -0
- package/dist/cli/{config-doctor-rm1m07gz.js → config-doctor-akxywx0c.js} +2 -2
- package/dist/cli/{curation-policy-7pgdjt5w.js → curation-policy-62w2pwfz.js} +2 -2
- package/dist/cli/{curator-llm-factory-0hncnz9t.js → curator-llm-factory-av2tcfy9.js} +12 -12
- package/dist/cli/{curator-n6whbm4r.js → curator-mhhvx2pw.js} +12 -12
- package/dist/cli/{guardrail-explain-8gknrsbb.js → guardrail-explain-kqx2bczn.js} +13 -13
- package/dist/cli/{guardrail-log-6a2zxvtx.js → guardrail-log-222xyxfp.js} +3 -3
- package/dist/cli/{hive-promoter-mpjq0fw9.js → hive-promoter-6mhnhrbx.js} +12 -12
- package/dist/cli/{index-hr2kzcem.js → index-0cdq55k0.js} +14 -14
- package/dist/cli/{index-vdfewvn5.js → index-0f45t7xy.js} +5 -5
- package/dist/cli/{index-45mvd5q7.js → index-1012f47p.js} +4 -4
- package/dist/cli/{index-rp5msv7n.js → index-1htanqp1.js} +1 -1
- package/dist/cli/{index-emzes7sj.js → index-4b1e5m0d.js} +2 -2
- package/dist/cli/{index-ambnwnmt.js → index-74xejn4v.js} +1 -1
- package/dist/cli/{index-jkwyjr8x.js → index-ccfkfrew.js} +2 -2
- package/dist/cli/{index-xezv6tdw.js → index-dezgmvtw.js} +1 -1
- package/dist/cli/{index-8tjbq2ej.js → index-e315gwc9.js} +1 -1
- package/dist/cli/{index-fm4zfxnr.js → index-gbnpz7rh.js} +1 -1
- package/dist/cli/{index-01n43w2p.js → index-gd5w3ef8.js} +3 -3
- package/dist/cli/{index-pk099nqv.js → index-jt7hnr7q.js} +1 -1
- package/dist/cli/{index-4ycq2mrp.js → index-qzkcy22e.js} +1 -1
- package/dist/cli/{index-414r47r7.js → index-r1gdkn2d.js} +4 -0
- package/dist/cli/{index-7xg876np.js → index-s6hskqg6.js} +211 -91
- package/dist/cli/{index-sa3dgpmc.js → index-yq4s3q43.js} +2 -2
- package/dist/cli/index.js +12 -12
- package/dist/cli/{knowledge-escalator-gr8qd7kz.js → knowledge-escalator-h3hg7ek7.js} +3 -3
- package/dist/cli/{knowledge-events-q83g3f8z.js → knowledge-events-jtr66wxz.js} +1 -1
- package/dist/cli/{knowledge-store-qq3w5yt8.js → knowledge-store-69ttjjjs.js} +1 -1
- package/dist/cli/{knowledge-validator-7jhq8yam.js → knowledge-validator-yn06rh13.js} +4 -4
- package/dist/cli/{scan-cursor-fa5sy36q.js → scan-cursor-r0w2p5gz.js} +2 -2
- package/dist/cli/{schema-bw68my66.js → schema-69z8w1ka.js} +1 -1
- package/dist/cli/{skill-generator-ffc1agyw.js → skill-generator-a7xfyddq.js} +5 -5
- package/dist/commands/abort-pr-workflow.d.ts +17 -0
- package/dist/commands/registry.d.ts +8 -0
- package/dist/hooks/pr-workflow-gate.d.ts +32 -0
- package/dist/hooks/pr-workflow-response-gate.d.ts +48 -0
- package/dist/index.js +73 -63
- package/dist/tools/abort-pr-workflow.d.ts +5 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/manifest.d.ts +1 -0
- package/dist/tools/tool-metadata.d.ts +4 -0
- package/package.json +1 -1
package/dist/tools/index.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export type { ClassifiedFailure, FailureClassification, FailureCluster, } from '
|
|
|
86
86
|
export { classifyAndCluster, classifyFailure, clusterFailures, } from '../test-impact/failure-classifier.js';
|
|
87
87
|
export type { FlakyTestEntry } from '../test-impact/flaky-detector.js';
|
|
88
88
|
export { computeFlakyScore, detectFlakyTests, isTestQuarantined, } from '../test-impact/flaky-detector.js';
|
|
89
|
+
export { abort_pr_workflow, executeAbortPrWorkflow, } from './abort-pr-workflow';
|
|
89
90
|
export { complete_pr_workflow, executeCompletePrWorkflow, } from './complete-pr-workflow';
|
|
90
91
|
export { epic_plan_waves } from './epic-plan-waves';
|
|
91
92
|
export { epic_record_divergence } from './epic-record-divergence';
|
package/dist/tools/manifest.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export declare const TOOL_MANIFEST: {
|
|
|
43
43
|
check_gate_status: () => ToolDefinition;
|
|
44
44
|
completion_verify: () => ToolDefinition;
|
|
45
45
|
complete_pr_workflow: () => ToolDefinition;
|
|
46
|
+
abort_pr_workflow: () => ToolDefinition;
|
|
46
47
|
run_pr_feedback_stage_a: () => ToolDefinition;
|
|
47
48
|
submit_council_verdicts: () => ToolDefinition;
|
|
48
49
|
submit_phase_council_verdicts: () => ToolDefinition;
|
|
@@ -103,6 +103,10 @@ export declare const TOOL_METADATA: {
|
|
|
103
103
|
description: string;
|
|
104
104
|
agents: "architect"[];
|
|
105
105
|
};
|
|
106
|
+
abort_pr_workflow: {
|
|
107
|
+
description: string;
|
|
108
|
+
agents: "architect"[];
|
|
109
|
+
};
|
|
106
110
|
run_pr_feedback_stage_a: {
|
|
107
111
|
description: string;
|
|
108
112
|
agents: "architect"[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.125.
|
|
3
|
+
"version": "7.125.5",
|
|
4
4
|
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|