opencode-swarm 6.46.0 → 6.47.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.
- package/dist/cli/index.js +450 -285
- package/dist/commands/close.d.ts +1 -1
- package/dist/commands/sync-plan.d.ts +3 -1
- package/dist/index.js +744 -578
- package/dist/plan/ledger.d.ts +2 -2
- package/dist/plan/manager.d.ts +12 -0
- package/dist/plan/manager.loadplan-validation-guard.test.d.ts +13 -0
- package/dist/plan/migration-revert.regression.test.d.ts +8 -0
- 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>;
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
* Maps to: plan service (loadPlan which triggers auto-heal/sync)
|
|
4
4
|
*
|
|
5
5
|
* This command ensures plan.json and plan.md are in sync.
|
|
6
|
-
*
|
|
6
|
+
* loadPlan() is safe here: the migration-aware ledger guard in loadPlan()
|
|
7
|
+
* now prevents false reverts caused by swarm identity changes, so the
|
|
8
|
+
* full auto-heal path (including legacy plan.md migration) is correct.
|
|
7
9
|
*/
|
|
8
10
|
export declare function handleSyncPlanCommand(directory: string, _args: string[]): Promise<string>;
|