opencode-swarm 6.22.2 → 6.22.3

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 CHANGED
@@ -30420,6 +30420,7 @@ function serializeAgentSession(s) {
30420
30420
  const partialGateWarningsIssuedForTask = Array.from(s.partialGateWarningsIssuedForTask ?? new Set);
30421
30421
  const catastrophicPhaseWarnings = Array.from(s.catastrophicPhaseWarnings ?? new Set);
30422
30422
  const phaseAgentsDispatched = Array.from(s.phaseAgentsDispatched ?? new Set);
30423
+ const lastCompletedPhaseAgentsDispatched = Array.from(s.lastCompletedPhaseAgentsDispatched ?? new Set);
30423
30424
  const windows = {};
30424
30425
  const rawWindows = s.windows ?? {};
30425
30426
  for (const [key, win] of Object.entries(rawWindows)) {
@@ -30457,6 +30458,7 @@ function serializeAgentSession(s) {
30457
30458
  lastPhaseCompleteTimestamp: s.lastPhaseCompleteTimestamp ?? 0,
30458
30459
  lastPhaseCompletePhase: s.lastPhaseCompletePhase ?? 0,
30459
30460
  phaseAgentsDispatched,
30461
+ lastCompletedPhaseAgentsDispatched,
30460
30462
  qaSkipCount: s.qaSkipCount ?? 0,
30461
30463
  qaSkipTaskIds: s.qaSkipTaskIds ?? [],
30462
30464
  taskWorkflowStates: Object.fromEntries(s.taskWorkflowStates ?? new Map)