opencode-swarm 7.113.1 → 7.113.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.
Files changed (27) hide show
  1. package/.opencode/skills/engineering-conventions/SKILL.md +5 -0
  2. package/.opencode/skills/gate-attribution/SKILL.md +2 -0
  3. package/dist/background/pending-delegations.d.ts +8 -0
  4. package/dist/background/workspace-snapshot.d.ts +7 -0
  5. package/dist/cli/{curator-nm2c9y1p.js → curator-9s04amtf.js} +4 -3
  6. package/dist/cli/{curator-llm-factory-nmhzc774.js → curator-llm-factory-dwvk7rh0.js} +4 -3
  7. package/dist/cli/{evidence-summary-service-j6fnsfeq.js → evidence-summary-service-w1er1ea2.js} +2 -2
  8. package/dist/cli/{gate-evidence-mk0ss1re.js → gate-evidence-9hdwj6tt.js} +1 -1
  9. package/dist/cli/{guardrail-explain-q1np1xaw.js → guardrail-explain-2k271yh4.js} +5 -4
  10. package/dist/cli/{hive-promoter-z4dezw62.js → hive-promoter-0y4pnft4.js} +4 -3
  11. package/dist/cli/{index-npd9rypp.js → index-54dgk0bv.js} +10 -10
  12. package/dist/cli/{index-d0w40jm3.js → index-afgh75zg.js} +1 -1
  13. package/dist/cli/{workspace-snapshot-w58jr2ga.js → index-dqh3zhhc.js} +53 -10
  14. package/dist/cli/{index-ky8eb4q6.js → index-n7rd2rkj.js} +1 -1
  15. package/dist/cli/{index-rqpm9cwe.js → index-w51xz4dr.js} +5 -4
  16. package/dist/cli/{index-pm992z24.js → index-x5g7et24.js} +10 -7
  17. package/dist/cli/index.js +4 -3
  18. package/dist/cli/{pending-delegations-gc3a2hfx.js → pending-delegations-t047f4a7.js} +7 -0
  19. package/dist/cli/workspace-snapshot-eyf6gd0d.js +22 -0
  20. package/dist/config/skill-mirrors.d.ts +3 -1
  21. package/dist/gate-evidence-classification.d.ts +5 -0
  22. package/dist/gate-evidence.d.ts +14 -3
  23. package/dist/index.js +272 -272
  24. package/dist/memory/schema.d.ts +4 -4
  25. package/dist/tools/phase-complete.d.ts +8 -0
  26. package/dist/tools/sast-scan.d.ts +2 -0
  27. package/package.json +1 -1
@@ -3,8 +3,8 @@ import type { CuratorMemoryDecision, MemoryKind, MemoryPatch, MemoryProposal, Me
3
3
  export declare const MemoryScopeTypeSchema: z.ZodEnum<{
4
4
  agent: "agent";
5
5
  project: "project";
6
- global_user: "global_user";
7
6
  workspace: "workspace";
7
+ global_user: "global_user";
8
8
  repository: "repository";
9
9
  run: "run";
10
10
  }>;
@@ -12,8 +12,8 @@ export declare const MemoryScopeRefSchema: z.ZodObject<{
12
12
  type: z.ZodEnum<{
13
13
  agent: "agent";
14
14
  project: "project";
15
- global_user: "global_user";
16
15
  workspace: "workspace";
16
+ global_user: "global_user";
17
17
  repository: "repository";
18
18
  run: "run";
19
19
  }>;
@@ -63,8 +63,8 @@ export declare const MemoryRecordSchema: z.ZodObject<{
63
63
  type: z.ZodEnum<{
64
64
  agent: "agent";
65
65
  project: "project";
66
- global_user: "global_user";
67
66
  workspace: "workspace";
67
+ global_user: "global_user";
68
68
  repository: "repository";
69
69
  run: "run";
70
70
  }>;
@@ -142,8 +142,8 @@ export declare const MemoryProposalSchema: z.ZodObject<{
142
142
  type: z.ZodEnum<{
143
143
  agent: "agent";
144
144
  project: "project";
145
- global_user: "global_user";
146
145
  workspace: "workspace";
146
+ global_user: "global_user";
147
147
  repository: "repository";
148
148
  run: "run";
149
149
  }>;
@@ -25,6 +25,10 @@ export interface PhaseCompleteArgs {
25
25
  callerAgent?: string;
26
26
  }
27
27
  export declare const MAX_OUTPUT_BYTES = 512000;
28
+ declare function allCompletedTasksHavePassedGateEvidence(directory: string, tasks: Array<{
29
+ id: string;
30
+ status: string;
31
+ }>): Promise<boolean>;
28
32
  /**
29
33
  * Execute the phase_complete tool
30
34
  * Gathers data, enforces policy, writes event, resets state
@@ -47,3 +51,7 @@ export declare function _buildOutputJson(outputData: {
47
51
  * Tool definition for phase_complete
48
52
  */
49
53
  export declare const phase_complete: ToolDefinition;
54
+ export declare const _test_exports: {
55
+ allCompletedTasksHavePassedGateEvidence: typeof allCompletedTasksHavePassedGateEvidence;
56
+ };
57
+ export {};
@@ -29,6 +29,8 @@ export interface SastScanInput {
29
29
  export interface SastScanResult {
30
30
  /** Overall verdict: pass if no findings above threshold, fail otherwise */
31
31
  verdict: EvidenceVerdict;
32
+ /** Validation error when the requested scan cannot safely run */
33
+ error?: string;
32
34
  /** Array of security findings */
33
35
  findings: SastScanFinding[];
34
36
  /** Summary information */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.113.1",
3
+ "version": "7.113.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",