opencode-swarm 7.87.3 → 7.88.0

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.
@@ -39,6 +39,7 @@ export { knowledge_recall } from './knowledge-recall';
39
39
  export { knowledge_receipt } from './knowledge-receipt';
40
40
  export { knowledge_remove } from './knowledge-remove';
41
41
  export { lint } from './lint';
42
+ export { parse_lane_candidates } from './parse-lane-candidates';
42
43
  export { phase_complete } from './phase-complete';
43
44
  export { pkg_audit } from './pkg-audit';
44
45
  export { type PlaceholderFinding, type PlaceholderScanInput, type PlaceholderScanResult, placeholder_scan, placeholderScan, } from './placeholder-scan';
@@ -48,6 +48,7 @@ export declare const TOOL_MANIFEST: {
48
48
  sbom_generate: () => ToolDefinition;
49
49
  checkpoint: () => ToolDefinition;
50
50
  pkg_audit: () => ToolDefinition;
51
+ parse_lane_candidates: () => ToolDefinition;
51
52
  test_runner: () => ToolDefinition;
52
53
  test_impact: () => ToolDefinition;
53
54
  mutation_test: () => ToolDefinition;
@@ -0,0 +1,2 @@
1
+ import { createSwarmTool } from './create-tool';
2
+ export declare const parse_lane_candidates: ReturnType<typeof createSwarmTool>;
@@ -123,6 +123,10 @@ export declare const TOOL_METADATA: {
123
123
  description: string;
124
124
  agents: ("reviewer" | "test_engineer" | "critic_hallucination_verifier" | "critic_oversight" | "architect")[];
125
125
  };
126
+ parse_lane_candidates: {
127
+ description: string;
128
+ agents: "architect"[];
129
+ };
126
130
  test_runner: {
127
131
  description: string;
128
132
  agents: ("reviewer" | "test_engineer" | "architect")[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.87.3",
3
+ "version": "7.88.0",
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",