opencode-swarm 6.43.0 → 6.43.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -44550,13 +44550,13 @@ If you call @coder instead of @${swarmId}_coder, the call will FAIL or go to the
44550
44550
  }
44551
44551
  if (!isAgentDisabled("curator_init", swarmAgents, swarmPrefix)) {
44552
44552
  const curatorInitPrompts = getPrompts("curator_init");
44553
- const curatorInit = createCuratorAgent(swarmAgents?.curator_init?.model ?? getModel("curator_init"), curatorInitPrompts.prompt, curatorInitPrompts.appendPrompt, "curator_init");
44553
+ const curatorInit = createCuratorAgent(swarmAgents?.curator_init?.model ?? getModel("explorer"), curatorInitPrompts.prompt, curatorInitPrompts.appendPrompt, "curator_init");
44554
44554
  curatorInit.name = prefixName("curator_init");
44555
44555
  agents.push(applyOverrides(curatorInit, swarmAgents, swarmPrefix));
44556
44556
  }
44557
44557
  if (!isAgentDisabled("curator_phase", swarmAgents, swarmPrefix)) {
44558
44558
  const curatorPhasePrompts = getPrompts("curator_phase");
44559
- const curatorPhase = createCuratorAgent(swarmAgents?.curator_phase?.model ?? getModel("curator_phase"), curatorPhasePrompts.prompt, curatorPhasePrompts.appendPrompt, "curator_phase");
44559
+ const curatorPhase = createCuratorAgent(swarmAgents?.curator_phase?.model ?? getModel("explorer"), curatorPhasePrompts.prompt, curatorPhasePrompts.appendPrompt, "curator_phase");
44560
44560
  curatorPhase.name = prefixName("curator_phase");
44561
44561
  agents.push(applyOverrides(curatorPhase, swarmAgents, swarmPrefix));
44562
44562
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.43.0",
3
+ "version": "6.43.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",