opencode-swarm 7.129.2 → 7.129.3
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/dist/background/workspace-snapshot.d.ts +30 -0
- package/dist/cli/{curator-rtpbkffc.js → curator-gay2gz5p.js} +2 -2
- package/dist/cli/{curator-llm-factory-5dcetzsz.js → curator-llm-factory-90803y01.js} +2 -2
- package/dist/cli/{guardrail-explain-27xbz1h2.js → guardrail-explain-axvx94rx.js} +3 -3
- package/dist/cli/{hive-promoter-7x33c575.js → hive-promoter-3j6xp8gm.js} +2 -2
- package/dist/cli/{index-vpjvqkdq.js → index-509jpmdd.js} +1 -1
- package/dist/cli/{index-ate4rw9q.js → index-9vbpy8f9.js} +38 -22
- package/dist/cli/{index-40zn444p.js → index-f2y46pda.js} +179 -1
- package/dist/cli/{index-s7tsx4v9.js → index-vjmmzhv0.js} +3 -3
- package/dist/cli/index.js +2 -2
- package/dist/cli/{workspace-snapshot-aa0ggevw.js → workspace-snapshot-jwkjg790.js} +21 -1
- package/dist/hooks/pr-workflow-gate.d.ts +11 -3
- package/dist/index.js +10 -8
- package/dist/tools/dispatch-lanes.d.ts +3 -3
- package/dist/tools/run-pr-feedback-stage-a.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
2
|
+
import { resolveExactMergeBaseAsync, resolvePrWorkflowRevisionDigestAsync } from '../background/workspace-snapshot.js';
|
|
3
3
|
import { type PrReviewDepthTier } from '../hooks/pr-workflow-gate.js';
|
|
4
4
|
import { createParallelDispatcher } from '../parallel/dispatcher/parallel-dispatcher.js';
|
|
5
5
|
import { createSwarmTool } from './create-tool.js';
|
|
@@ -236,8 +236,8 @@ export declare const _internals: {
|
|
|
236
236
|
getSessionOps: () => SessionOps | null;
|
|
237
237
|
getGeneratedAgentNames: () => readonly string[];
|
|
238
238
|
createParallelDispatcher: typeof createParallelDispatcher;
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
resolvePrWorkflowRevisionDigestAsync: typeof resolvePrWorkflowRevisionDigestAsync;
|
|
240
|
+
resolveExactMergeBaseAsync: typeof resolveExactMergeBaseAsync;
|
|
241
241
|
now: () => number;
|
|
242
242
|
sleep: (ms: number) => Promise<void>;
|
|
243
243
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { readGitTextAtRevision, resolveCurrentGitHead, resolveExactMergeBase, resolveGitControlStateDigest, resolvePrWorkflowRevisionDigest } from '../background/workspace-snapshot.js';
|
|
2
|
+
import { readGitTextAtRevision, resolveCurrentGitHead, resolveCurrentGitHeadAsync, resolveExactMergeBase, resolveExactMergeBaseAsync, resolveGitControlStateDigest, resolveGitControlStateDigestAsync, resolvePrWorkflowRevisionDigest, resolvePrWorkflowRevisionDigestAsync } from '../background/workspace-snapshot.js';
|
|
3
3
|
import { runExternalTool } from '../utils/external-tool-runner.js';
|
|
4
4
|
import { createSwarmTool } from './create-tool.js';
|
|
5
5
|
declare const STAGE_A_CATEGORIES: readonly ["build", "typecheck", "lint", "diff-check", "reproduction"];
|
|
@@ -57,9 +57,13 @@ export declare const _internals: {
|
|
|
57
57
|
runExternalTool: typeof runExternalTool;
|
|
58
58
|
readGitTextAtRevision: typeof readGitTextAtRevision;
|
|
59
59
|
resolveExactMergeBase: typeof resolveExactMergeBase;
|
|
60
|
+
resolveExactMergeBaseAsync: typeof resolveExactMergeBaseAsync;
|
|
60
61
|
resolveCurrentGitHead: typeof resolveCurrentGitHead;
|
|
62
|
+
resolveCurrentGitHeadAsync: typeof resolveCurrentGitHeadAsync;
|
|
61
63
|
resolveGitControlStateDigest: typeof resolveGitControlStateDigest;
|
|
64
|
+
resolveGitControlStateDigestAsync: typeof resolveGitControlStateDigestAsync;
|
|
62
65
|
resolvePrWorkflowRevisionDigest: typeof resolvePrWorkflowRevisionDigest;
|
|
66
|
+
resolvePrWorkflowRevisionDigestAsync: typeof resolvePrWorkflowRevisionDigestAsync;
|
|
63
67
|
isPlausibleStageACommand: typeof isPlausibleStageACommand;
|
|
64
68
|
discoverApplicableStageACategories: typeof discoverApplicableStageACategories;
|
|
65
69
|
discoverApplicableStageAObligations: typeof discoverApplicableStageAObligations;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.129.
|
|
3
|
+
"version": "7.129.3",
|
|
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",
|