opencode-swarm 6.36.0 → 6.38.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.
@@ -2,6 +2,6 @@
2
2
  * Adversarial security tests for Task 2.15: Session restart rehydration
3
3
  *
4
4
  * ONLY attack vectors - malformed inputs, oversized payloads, injection attempts, boundary violations
5
- * Tests the security hardening of rehydrateSessionFromDisk, readPlanFromDisk, and readEvidenceFromDisk
5
+ * Tests the security hardening of rehydrateSessionFromDisk, readPlanFromDisk, and readGateEvidenceFromDisk
6
6
  */
7
7
  export {};
@@ -1,3 +1,4 @@
1
+ import { type ASTDiffResult } from '../diff/ast-diff.js';
1
2
  import { createSwarmTool } from './create-tool';
2
3
  export interface DiffResult {
3
4
  files: Array<{
@@ -8,6 +9,7 @@ export interface DiffResult {
8
9
  contractChanges: string[];
9
10
  hasContractChanges: boolean;
10
11
  summary: string;
12
+ astDiffs?: ASTDiffResult[];
11
13
  }
12
14
  export interface DiffErrorResult {
13
15
  error: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.36.0",
3
+ "version": "6.38.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",