opencode-swarm 6.22.1 → 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 +2 -0
- package/dist/index.js +973 -844
- package/dist/session/snapshot-writer.d.ts +1 -0
- package/dist/state.d.ts +2 -0
- package/package.json +1 -1
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)
|