@henryqw/pi-prompt-creator 1.0.0 → 1.0.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 +4 -4
- package/extensions/prompt-creator.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ New user input does not stop a running child. Branch navigation discards its old
|
|
|
59
59
|
|
|
60
60
|
| Field | Required | Possible values | Default |
|
|
61
61
|
| --- | --- | --- | --- |
|
|
62
|
-
| `automatic` | Yes | `true` or `false` | `
|
|
62
|
+
| `automatic` | Yes | `true` or `false` | `true` |
|
|
63
63
|
| `inputThreshold` | No | Positive integer | `3` |
|
|
64
64
|
|
|
65
65
|
Edit `inputThreshold`, then run `/reload` to apply the change.
|
|
@@ -76,7 +76,9 @@ Only `Automatic On` or `Automatic Off` writes the config. Toggling preserves the
|
|
|
76
76
|
|
|
77
77
|
## Privacy
|
|
78
78
|
|
|
79
|
-
|
|
79
|
+
Automatic analysis is on by default. It sends the current conversation to the child model configured through `/task-models`.
|
|
80
|
+
|
|
81
|
+
Disable automatic analysis through `/promptor`.
|
|
80
82
|
|
|
81
83
|
The payload includes the active compaction or branch summary, user text, and successfully completed assistant text. It also includes effective prompt names and descriptions.
|
|
82
84
|
|
|
@@ -84,8 +86,6 @@ Project context files and prompt templates are disabled for the child.
|
|
|
84
86
|
|
|
85
87
|
Tool traffic, thinking, images, custom messages, and inactive branches are excluded.
|
|
86
88
|
|
|
87
|
-
Automatic analysis is off by default. It starts only after you enable it through `/promptor`.
|
|
88
|
-
|
|
89
89
|
## Automatic mode
|
|
90
90
|
|
|
91
91
|
Automatic mode waits for the configured number of non-empty user inputs. The default is three.
|
|
@@ -268,7 +268,7 @@ export default function promptCreatorExtension(pi: ExtensionAPI, options: Prompt
|
|
|
268
268
|
const configStore = createConfigStore<Config>({
|
|
269
269
|
extensionId: EXTENSION_ID,
|
|
270
270
|
agentDir,
|
|
271
|
-
defaults: () => ({ automatic:
|
|
271
|
+
defaults: () => ({ automatic: true, inputThreshold: DEFAULT_INPUT_THRESHOLD }),
|
|
272
272
|
parse: parseConfig,
|
|
273
273
|
});
|
|
274
274
|
let executor = options.executor;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@henryqw/pi-prompt-creator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Turn current Pi conversation signals into user-approved prompt templates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"pack:check": "npm pack --dry-run"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@earendil-works/pi-coding-agent": "^0.85.
|
|
29
|
+
"@earendil-works/pi-coding-agent": "^0.85.1"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|