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/README.md +37 -10
- package/dist/agents/architect.skip-aliases.test.d.ts +1 -0
- package/dist/cli/index.js +11825 -10650
- package/dist/commands/first-run.test.d.ts +11 -0
- package/dist/commands/index.d.ts +1 -0
- package/dist/commands/registry.d.ts +123 -0
- package/dist/commands/registry.test.d.ts +1 -0
- package/dist/config/constants.d.ts +4 -0
- package/dist/config/schema.d.ts +20 -0
- package/dist/hooks/agent-activity.d.ts +5 -3
- package/dist/hooks/agent-activity.test.d.ts +1 -0
- package/dist/index.js +1345 -954
- package/dist/state.d.ts +8 -2
- package/dist/state.telemetry.test.d.ts +1 -0
- package/package.json +1 -1
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,
|
|
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,
|
|
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.
|
|
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",
|