@henryqw/pi-prompt-creator 1.0.4 → 1.0.5

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.
@@ -12,7 +12,6 @@ import {
12
12
  import { createConfigStore } from "@henryqw/pi-config-store";
13
13
  import {
14
14
  createEphemeralSubagentExecutor,
15
- MIN_MAX_TURNS,
16
15
  resolveRoleLaunch,
17
16
  type EphemeralSubagentExecutor,
18
17
  type Role,
@@ -309,7 +308,7 @@ export default function promptCreatorExtension(pi: ExtensionAPI, options: Prompt
309
308
  };
310
309
  const getExecutor = () => executor ??= createEphemeralSubagentExecutor({
311
310
  maxConcurrency: 1,
312
- maxTurns: MIN_MAX_TURNS,
311
+ maxTurns: 3,
313
312
  timeout: { idleMs: 2 * 60_000, maxMs: 5 * 60_000 },
314
313
  });
315
314
  const startAnalysis = (ctx: ExtensionContext, manual: boolean) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henryqw/pi-prompt-creator",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Turn current Pi conversation signals into user-approved prompt templates.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@henryqw/pi-config-store": "^1.0.0",
49
- "@henryqw/pi-subagent": "^14.0.0",
49
+ "@henryqw/pi-subagent": "^15.0.0",
50
50
  "@henryqw/pi-task-models": "^5.0.0"
51
51
  }
52
52
  }