opencode-swarm 6.46.0 → 6.47.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.
- package/dist/cli/index.js +341 -240
- package/dist/commands/close.d.ts +1 -1
- package/dist/index.js +621 -520
- package/package.json +1 -1
package/dist/commands/close.d.ts
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* writing retrospectives for in-progress phases, and clearing session state.
|
|
4
4
|
* Must be idempotent - safe to run multiple times.
|
|
5
5
|
*/
|
|
6
|
-
export declare function handleCloseCommand(directory: string,
|
|
6
|
+
export declare function handleCloseCommand(directory: string, args: string[]): Promise<string>;
|