opencode-swarm 6.49.0 → 6.50.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/agents/explorer.d.ts +2 -2
- package/dist/background/plan-sync-worker.d.ts +1 -1
- package/dist/cli/index.js +28 -16
- package/dist/config/schema.d.ts +4 -0
- package/dist/hooks/curator-types.d.ts +1 -1
- package/dist/hooks/knowledge-types.d.ts +4 -0
- package/dist/index.js +28409 -28262
- package/dist/plan/manager.d.ts +2 -0
- package/package.json +1 -1
package/dist/plan/manager.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { type Plan, type TaskStatus } from '../config/plan-schema';
|
|
2
|
+
/** Reset the startup ledger check flag. For testing only. */
|
|
3
|
+
export declare function resetStartupLedgerCheck(): void;
|
|
2
4
|
/**
|
|
3
5
|
* Load plan.json ONLY without auto-migration from plan.md.
|
|
4
6
|
* Returns null if plan.json doesn't exist or is invalid.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.50.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",
|