opencode-swarm 7.7.0 → 7.8.0

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
@@ -269,6 +269,14 @@ export declare const swarmState: {
269
269
  * name at call time by matching the active session's agent prefix. */
270
270
  curatorInitAgentNames: string[];
271
271
  curatorPhaseAgentNames: string[];
272
+ /**
273
+ * All generated agent names registered with OpenCode at plugin init.
274
+ * Used by Full-Auto v2 delegation guard to apply strict registry-aware
275
+ * canonical-role extraction (so user-supplied prose like
276
+ * `not_an_architect` cannot collapse to `architect` via suffix-only
277
+ * matching). Populated by `src/index.ts` after `createAgents`.
278
+ */
279
+ generatedAgentNames: string[];
272
280
  /** Last known context budget percentage (0-100), updated by system-enhancer */
273
281
  lastBudgetPct: number;
274
282
  /** Per-session guardrail state — keyed by sessionID */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.7.0",
3
+ "version": "7.8.0",
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",