@ferris1225/pi-subagents 0.26.1 → 0.26.2

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 CHANGED
@@ -434,9 +434,8 @@ When the config already exists, re-running `/subagents-setup` opens a menu whose
434
434
  model and thinking strength — so changing a single agent no longer walks every enabled
435
435
  agent. After one agent's model + strength picks, the wizard returns to the agent picker
436
436
  so several agents can be configured in one pass; Esc at any step ends the pass and keeps
437
- every agent already configured. **Change default thinking strength** sets only the global
438
- fallback. The rest of the menu toggles injection, scope, concurrency, fix rounds, and
439
- idle timeout; **Full re-setup** re-runs the whole first-time wizard.
437
+ every agent already configured. The rest of the menu toggles injection, scope, concurrency,
438
+ fix rounds, and idle timeout; **Full re-setup** re-runs the whole first-time wizard.
440
439
 
441
440
  ```json
442
441
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ferris1225/pi-subagents",
3
- "version": "0.26.1",
3
+ "version": "0.26.2",
4
4
  "description": "Focused sub-agent delegation for pi: explore / worker / reviewer agents in isolated context, with proactive dispatch injection and per-agent model selection.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/setup.ts CHANGED
@@ -391,7 +391,6 @@ async function runMenu(ctx: ExtensionCommandContext, configPath: string, config:
391
391
  const choice = await ctx.ui.select("pi-subagents is already configured. What would you like to change?", [
392
392
  "Enable/disable agents",
393
393
  "Configure an agent (model + thinking)",
394
- "Change default thinking strength",
395
394
  "Toggle proactive injection",
396
395
  "Change agent scope",
397
396
  "Change max concurrent sub-agents",
@@ -437,10 +436,6 @@ async function runMenu(ctx: ExtensionCommandContext, configPath: string, config:
437
436
  }
438
437
  if (!configuredAny) return notifyCancelled(ctx);
439
438
  next.agentModels = repairStaleModels(ctx, next.agentModels);
440
- } else if (choice.startsWith("Change default thinking")) {
441
- const thinkingLevel = await pickThinkingLevel(ctx, config.thinkingLevel);
442
- if (thinkingLevel === undefined) return notifyCancelled(ctx);
443
- next.thinkingLevel = thinkingLevel;
444
439
  } else if (choice.startsWith("Toggle")) {
445
440
  const injection = await pickInjection(ctx, config.proactiveInjection);
446
441
  if (injection === undefined) return notifyCancelled(ctx);