opencode-swarm 7.2.0 → 7.3.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/state.d.ts CHANGED
@@ -368,7 +368,10 @@ export declare function recordPhaseAgentDispatch(sessionId: string, agentName: s
368
368
  * @param taskId - The task identifier
369
369
  * @param newState - The requested new state
370
370
  */
371
- export declare function advanceTaskState(session: AgentSessionState, taskId: string, newState: TaskWorkflowState, councilConfig?: {
371
+ export declare function advanceTaskState(session: AgentSessionState, taskId: string, newState: TaskWorkflowState, options?: {
372
+ telemetrySessionId?: string;
373
+ emitTelemetry?: boolean;
374
+ }, councilConfig?: {
372
375
  minimumMembers?: number;
373
376
  requireAllMembers?: boolean;
374
377
  }): void;
@@ -389,7 +392,10 @@ export declare function advanceTaskState(session: AgentSessionState, taskId: str
389
392
  * not break the in-memory state machine — matches the existing defensive
390
393
  * pattern around advanceTaskState call sites.
391
394
  */
392
- export declare function advanceTaskStateAndPersist(session: AgentSessionState, taskId: string, newState: TaskWorkflowState, directory: string, councilConfig?: {
395
+ export declare function advanceTaskStateAndPersist(session: AgentSessionState, taskId: string, newState: TaskWorkflowState, directory: string, options?: {
396
+ telemetrySessionId?: string;
397
+ emitTelemetry?: boolean;
398
+ }, councilConfig?: {
393
399
  minimumMembers?: number;
394
400
  requireAllMembers?: boolean;
395
401
  }): Promise<void>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.2.0",
3
+ "version": "7.3.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",