opencode-swarm 7.129.1 → 7.129.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.
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { resolveExactMergeBase, resolvePrWorkflowRevisionDigest } from '../background/workspace-snapshot.js';
3
+ import { type PrReviewDepthTier } from '../hooks/pr-workflow-gate.js';
3
4
  import { createParallelDispatcher } from '../parallel/dispatcher/parallel-dispatcher.js';
4
5
  import { createSwarmTool } from './create-tool.js';
5
6
  export declare const MAX_PROMPT_CHARS = 80000;
@@ -61,6 +62,7 @@ declare const CollectLaneResultsArgsSchema: z.ZodObject<{
61
62
  cancel_pending: z.ZodOptional<z.ZodBoolean>;
62
63
  }, z.core.$strip>;
63
64
  export type DispatchLaneSpec = z.infer<typeof LaneSchema>;
65
+ declare function validatePrReviewMicroDispatch(args: DispatchLanesAsyncArgs, depthTier: PrReviewDepthTier): void;
64
66
  export type DispatchLanesArgs = z.infer<typeof DispatchLanesArgsSchema>;
65
67
  export type DispatchLanesAsyncArgs = z.infer<typeof DispatchLanesAsyncArgsSchema>;
66
68
  export type CollectLaneResultsArgs = z.infer<typeof CollectLaneResultsArgsSchema>;
@@ -240,6 +242,7 @@ export declare const _internals: {
240
242
  sleep: (ms: number) => Promise<void>;
241
243
  };
242
244
  export declare const _test_exports: {
245
+ validatePrReviewMicroDispatch: typeof validatePrReviewMicroDispatch;
243
246
  applyCommonPrompt: typeof applyCommonPrompt;
244
247
  applyExplorerFormatSuffix: typeof applyExplorerFormatSuffix;
245
248
  applyPrWorkflowPromptContract: typeof applyPrWorkflowPromptContract;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.129.1",
3
+ "version": "7.129.2",
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",