opencode-swarm 7.3.7 → 7.4.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.
@@ -42,19 +42,6 @@ export interface MutationReport {
42
42
  timestamp: string;
43
43
  }
44
44
  export declare const MAX_MUTATIONS_PER_FUNCTION = 10;
45
- /**
46
- * Build the argument array for `git apply` with cross-platform whitespace
47
- * tolerance. `--ignore-whitespace` makes git ignore CRLF/LF differences in
48
- * context lines, which is required on Windows where `core.autocrlf=true`
49
- * causes checked-out files to use CRLF while LLM-generated patches use LF.
50
- * The flag is a no-op on macOS and Linux (files already use LF).
51
- */
52
- export declare function buildGitApplyArgs(patchFile: string): string[];
53
- /**
54
- * Build the argument array for `git apply -R` (revert) with the same
55
- * cross-platform whitespace tolerance as `buildGitApplyArgs`.
56
- */
57
- export declare function buildGitRevertArgs(patchFile: string): string[];
58
45
  export declare function executeMutation(patch: MutationPatch, testCommand: string[], _testFiles: string[], workingDir: string): Promise<MutationResult>;
59
46
  export declare function computeReport(results: MutationResult[], durationMs: number, budgetMs?: number): MutationReport;
60
47
  export declare function executeMutationSuite(patches: MutationPatch[], testCommand: string[], testFiles: string[], workingDir: string, budgetMs?: number, onProgress?: (completed: number, total: number, result: MutationResult) => void, sourceFiles?: Map<string, string>): Promise<MutationReport>;
@@ -6,13 +6,6 @@
6
6
  */
7
7
  import type { ToolContext } from '@opencode-ai/plugin';
8
8
  import type { MutationPatch } from './engine.js';
9
- /**
10
- * Dependency-injection seam. Tests may override `timeoutMs` to a short value
11
- * to exercise the timeout path without waiting 90 seconds.
12
- */
13
- export declare const _internals: {
14
- timeoutMs: number;
15
- };
16
9
  /**
17
10
  * Generate mutation testing patches for the given source files using an LLM.
18
11
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.3.7",
3
+ "version": "7.4.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",