opencode-swarm 6.33.0 → 6.33.1

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.
@@ -87,4 +87,10 @@ export declare function writeSnapshot(directory: string, state: typeof swarmStat
87
87
  * Returns a hook function that writes the current swarmState to disk.
88
88
  */
89
89
  export declare function createSnapshotWriterHook(directory: string): (input: unknown, output: unknown) => Promise<void>;
90
+ /**
91
+ * v6.33.1: Flush any pending debounced snapshot write immediately.
92
+ * Used by phase-complete and handoff to ensure critical state transitions
93
+ * are persisted before returning.
94
+ */
95
+ export declare function flushPendingSnapshot(directory: string): Promise<void>;
90
96
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.33.0",
3
+ "version": "6.33.1",
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",