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.
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { resolveExactMergeBase, resolvePrWorkflowRevisionDigest } from '../background/workspace-snapshot.js';
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
- resolvePrWorkflowRevisionDigest: typeof resolvePrWorkflowRevisionDigest;
240
- resolveExactMergeBase: typeof resolveExactMergeBase;
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.2",
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",