opencode-swarm 7.20.2 → 7.21.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 +1 -1
- package/dist/hooks/skill-propagation-gate.d.ts +113 -0
- package/dist/hooks/skill-scoring.d.ts +127 -0
- package/dist/hooks/skill-usage-log.d.ts +109 -0
- package/dist/index.js +1476 -759
- package/dist/tools/update-task-status.d.ts +4 -5
- package/package.json +1 -1
|
@@ -66,11 +66,10 @@ export declare function checkReviewerGate(taskId: string, workingDirectory?: str
|
|
|
66
66
|
export declare function checkReviewerGateWithScope(taskId: string, workingDirectory?: string, sessionID?: string): Promise<ReviewerGateResult>;
|
|
67
67
|
/**
|
|
68
68
|
* Recovery mechanism: reconcile task state with delegation history.
|
|
69
|
-
* When reviewer/test_engineer delegations occurred but the state
|
|
70
|
-
* was not advanced (e.g., toolAfter didn't fire
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
* so that checkReviewerGate can make an accurate decision.
|
|
69
|
+
* When task-scoped reviewer/test_engineer delegations occurred but the state
|
|
70
|
+
* machine was not advanced (e.g., toolAfter didn't fire or subagent_type was
|
|
71
|
+
* missing), this function advances the task state so that checkReviewerGate can
|
|
72
|
+
* make an accurate decision without attributing unrelated delegation activity.
|
|
74
73
|
*
|
|
75
74
|
* @param taskId - The task ID to recover state for
|
|
76
75
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.21.1",
|
|
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",
|