opencode-swarm 6.33.4 → 6.33.5

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -54991,6 +54991,7 @@ function deserializeAgentSession(s) {
54991
54991
  lastScopeViolation: null,
54992
54992
  scopeViolationDetected: s.scopeViolationDetected,
54993
54993
  modifiedFilesThisCoderTask: [],
54994
+ loopDetectionWindow: [],
54994
54995
  pendingAdvisoryMessages: s.pendingAdvisoryMessages ?? [],
54995
54996
  model_fallback_index: s.model_fallback_index ?? 0,
54996
54997
  modelFallbackExhausted: s.modelFallbackExhausted ?? false,
@@ -55056,6 +55057,12 @@ async function rehydrateState(snapshot) {
55056
55057
  for (const window2 of Object.values(session.windows)) {
55057
55058
  window2.startedAtMs = now;
55058
55059
  window2.lastSuccessTimeMs = now;
55060
+ window2.hardLimitHit = false;
55061
+ window2.toolCalls = 0;
55062
+ window2.consecutiveErrors = 0;
55063
+ window2.recentToolCalls = [];
55064
+ window2.warningIssued = false;
55065
+ window2.warningReason = "";
55059
55066
  }
55060
55067
  }
55061
55068
  swarmState.agentSessions.set(sessionId, session);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.33.4",
3
+ "version": "6.33.5",
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",