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
|
@@ -32,6 +32,7 @@ export interface SerializedAgentSession {
|
|
|
32
32
|
lastPhaseCompleteTimestamp: number;
|
|
33
33
|
lastPhaseCompletePhase: number;
|
|
34
34
|
phaseAgentsDispatched: string[];
|
|
35
|
+
lastCompletedPhaseAgentsDispatched: string[];
|
|
35
36
|
qaSkipCount: number;
|
|
36
37
|
qaSkipTaskIds: string[];
|
|
37
38
|
taskWorkflowStates?: Record<string, string>;
|
package/dist/state.d.ts
CHANGED
|
@@ -109,6 +109,8 @@ export interface AgentSessionState {
|
|
|
109
109
|
lastPhaseCompletePhase: number;
|
|
110
110
|
/** Set of agents dispatched in current phase (normalized names) */
|
|
111
111
|
phaseAgentsDispatched: Set<string>;
|
|
112
|
+
/** Set of agents dispatched in the most recently completed phase (persisted across phase reset) */
|
|
113
|
+
lastCompletedPhaseAgentsDispatched: Set<string>;
|
|
112
114
|
}
|
|
113
115
|
/**
|
|
114
116
|
* Represents a single agent invocation window with isolated guardrail budgets.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "6.22.
|
|
3
|
+
"version": "6.22.3",
|
|
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",
|