opencode-swarm 7.74.3 → 7.75.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 +174 -23
- package/dist/commands/full-auto.d.ts +15 -3
- package/dist/commands/registry.d.ts +3 -3
- package/dist/config/loader.d.ts +6 -11
- package/dist/config/schema.d.ts +22 -0
- package/dist/full-auto/state.d.ts +12 -0
- package/dist/hooks/auto-review.d.ts +82 -0
- package/dist/hooks/review-receipt-collector.d.ts +58 -0
- package/dist/hooks/review-receipt.d.ts +7 -0
- package/dist/index.js +1817 -1194
- package/dist/session/snapshot-reader.d.ts +1 -1
- package/dist/turbo/lean/reviewer.d.ts +3 -1
- package/package.json +1 -1
|
@@ -28,7 +28,7 @@ export declare function readSnapshot(directory: string): Promise<SnapshotData |
|
|
|
28
28
|
* Clears existing maps first, then populates from snapshot.
|
|
29
29
|
* Does NOT touch activeToolCalls or pendingEvents (remain at defaults).
|
|
30
30
|
*/
|
|
31
|
-
export declare function rehydrateState(snapshot: SnapshotData): Promise<void>;
|
|
31
|
+
export declare function rehydrateState(snapshot: SnapshotData, directory?: string): Promise<void>;
|
|
32
32
|
/**
|
|
33
33
|
* Load snapshot from disk and rehydrate swarmState.
|
|
34
34
|
* Called on plugin init to restore state from previous session.
|
|
@@ -39,8 +39,10 @@ export interface PhaseReviewerResult {
|
|
|
39
39
|
* Uses the `{swarmId}_reviewer` pattern for named swarms and bare `reviewer`
|
|
40
40
|
* for the default swarm. Follows the same suffix-based resolution used by
|
|
41
41
|
* `getCanonicalAgentRole` so that arbitrary swarm prefixes are handled correctly.
|
|
42
|
+
*
|
|
43
|
+
* Exported for reuse by the auto-review hook (src/hooks/auto-review.ts).
|
|
42
44
|
*/
|
|
43
|
-
declare function resolveDefaultReviewerAgent(generatedAgentNames: string[]): string;
|
|
45
|
+
export declare function resolveDefaultReviewerAgent(generatedAgentNames: string[]): string;
|
|
44
46
|
/**
|
|
45
47
|
* Compiles a structured review package from lane and phase evidence.
|
|
46
48
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.75.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",
|