opencode-swarm 7.76.0 → 7.76.2
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 +322 -295
- package/dist/commands/registry.d.ts +7 -0
- package/dist/config/bundled-skills.d.ts +9 -3
- package/dist/hooks/abort-utils.d.ts +8 -0
- package/dist/index.js +531 -465
- package/dist/turbo/lean/integration.d.ts +1 -1
- package/dist/turbo/lean/reviewer.d.ts +1 -1
- package/dist/turbo/lean/runner.d.ts +4 -0
- package/package.json +1 -1
|
@@ -108,7 +108,7 @@ export declare const _internals: {
|
|
|
108
108
|
compileCriticPackage: typeof compileCriticPackage;
|
|
109
109
|
parseCriticVerdict: typeof parseCriticVerdict;
|
|
110
110
|
writeCriticEvidence: typeof writeCriticEvidence;
|
|
111
|
-
dispatchCriticAgent: (directory: string, pkg: CriticPackage, agentName: string, timeoutMs: number) => Promise<string>;
|
|
111
|
+
dispatchCriticAgent: (directory: string, pkg: CriticPackage, agentName: string, timeoutMs: number, parentSessionId?: string) => Promise<string>;
|
|
112
112
|
resolveDefaultCriticAgent: typeof resolveDefaultCriticAgent;
|
|
113
113
|
readReviewerEvidence: typeof readReviewerEvidence;
|
|
114
114
|
listLaneEvidence: typeof listLaneEvidence;
|
|
@@ -97,7 +97,7 @@ export declare const _internals: {
|
|
|
97
97
|
compileReviewPackage: typeof compileReviewPackage;
|
|
98
98
|
parseReviewerVerdict: typeof parseReviewerVerdict;
|
|
99
99
|
writeReviewerEvidence: typeof writeReviewerEvidence;
|
|
100
|
-
dispatchReviewerAgent: (directory: string, pkg: ReviewPackage, agentName: string, timeoutMs: number) => Promise<string>;
|
|
100
|
+
dispatchReviewerAgent: (directory: string, pkg: ReviewPackage, agentName: string, timeoutMs: number, parentSessionId?: string) => Promise<string>;
|
|
101
101
|
resolveDefaultReviewerAgent: typeof resolveDefaultReviewerAgent;
|
|
102
102
|
listLaneEvidence: typeof listLaneEvidence;
|
|
103
103
|
readPhaseEvidence: typeof readPhaseEvidence;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.76.
|
|
3
|
+
"version": "7.76.2",
|
|
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",
|