opencode-swarm 6.19.5 → 6.19.6

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.
@@ -45,8 +45,10 @@ export interface PreCheckBatchResult {
45
45
  }
46
46
  /**
47
47
  * Run all 4 pre-check tools in parallel with concurrency limit
48
+ * @param input - The pre-check batch input
49
+ * @param workspaceDir - Optional workspace directory for traversal validation (defaults to directory param or process.cwd())
48
50
  */
49
- export declare function runPreCheckBatch(input: PreCheckBatchInput): Promise<PreCheckBatchResult>;
51
+ export declare function runPreCheckBatch(input: PreCheckBatchInput, workspaceDir?: string): Promise<PreCheckBatchResult>;
50
52
  /**
51
53
  * Pre-check batch tool - runs 4 verification tools in parallel
52
54
  * Returns unified result with gates_passed status
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.19.5",
3
+ "version": "6.19.6",
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",
@@ -57,9 +57,6 @@
57
57
  "@biomejs/biome": "2.3.14",
58
58
  "bun-types": "latest",
59
59
  "js-yaml": "^4.1.1",
60
- "tree-sitter-dart": "1.0.0",
61
- "tree-sitter-kotlin": "0.3.8",
62
- "tree-sitter-swift": "0.7.1",
63
60
  "typescript": "^5.7.3"
64
61
  }
65
62
  }