opencode-swarm 7.20.0 → 7.20.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/guardrails.d.ts +21 -0
- package/dist/index.js +310 -257
- package/dist/state.d.ts +2 -0
- package/package.json +1 -1
package/dist/state.d.ts
CHANGED
|
@@ -194,6 +194,8 @@ export interface AgentSessionState {
|
|
|
194
194
|
contextPressureWarningSent?: boolean;
|
|
195
195
|
/** Queue of advisory messages (e.g., SLOP, context pressure) pending injection into next messagesTransform */
|
|
196
196
|
pendingAdvisoryMessages?: string[];
|
|
197
|
+
/** Fingerprint of the most recent provider-failure transcript that received recovery guidance */
|
|
198
|
+
lastProviderRecoveryFingerprint?: string;
|
|
197
199
|
/** Timestamp when session was rehydrated from snapshot (0 if never rehydrated) */
|
|
198
200
|
sessionRehydratedAt: number;
|
|
199
201
|
/** Pattern type to detection count mapping */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.20.
|
|
3
|
+
"version": "7.20.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",
|