@henryqw/pi-herdr-rename 3.0.2 → 4.0.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/README.md +12 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# `@henryqw/pi-herdr-rename`
|
|
2
2
|
|
|
3
|
-
Give each conversation
|
|
3
|
+
Give each Pi conversation a short title, and use it for Herdr labels and generated Git branches.
|
|
4
4
|
|
|
5
5
|
## Why
|
|
6
6
|
|
|
7
|
-
- **Created for**:
|
|
8
|
-
- **Advantage**:
|
|
7
|
+
- **Created for**: Users who cannot identify conversations from generated workspace labels.
|
|
8
|
+
- **Advantage**: One concise title labels Pi and Herdr, maps to Git, and returns on resume without another model call.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
@@ -14,13 +14,19 @@ pi install npm:@henryqw/pi-task-models
|
|
|
14
14
|
pi install npm:@henryqw/pi-herdr-rename
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
Run `/task-models` and configure the `fast` profile. Herdr is required for pane, tab, workspace, and branch updates.
|
|
18
|
+
|
|
19
|
+
Outside Herdr, the extension still changes the Pi session name.
|
|
20
|
+
|
|
17
21
|
## With
|
|
18
22
|
|
|
19
|
-
`@henryqw/pi-task-models` is required for shared title-generation model profiles.
|
|
23
|
+
[`@henryqw/pi-task-models`](https://pi.henry.wang/extensions/pi-task-models) is required for shared title-generation model profiles.
|
|
20
24
|
|
|
21
25
|
## Use
|
|
22
26
|
|
|
23
|
-
|
|
27
|
+
Send the first real prompt. A title appears in the background without delaying the reply.
|
|
28
|
+
|
|
29
|
+
Run `/rename` after the task changes. It generates a new display title and semantic branch from up to three recent rounds.
|
|
24
30
|
|
|
25
31
|
### Trigger
|
|
26
32
|
|
|
@@ -41,7 +47,7 @@ A semantic branch is a Git-safe branch name made from a task type and the displa
|
|
|
41
47
|
|
|
42
48
|
### Model choice and resume
|
|
43
49
|
|
|
44
|
-
The shared [`pi-task-models` config](
|
|
50
|
+
The shared [`pi-task-models` config](https://pi.henry.wang/extensions/pi-task-models#config) is at `~/.pi/agent/config/pi-task-models/config.json`. It can explicitly override the local `pi-herdr-rename/rename` declaration, which defaults to `fast`.
|
|
45
51
|
|
|
46
52
|
The extension tries the assigned profile primary, then fallback, while honoring the configured thinking level. It never substitutes the current session model. A missing shared task-model config warns once at session start; run `/task-models` to configure rename routing. No viable route leaves titles unchanged.
|
|
47
53
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@henryqw/pi-herdr-rename",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Generate short Pi display titles and rename the current Herdr location.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"pack:check": "npm pack --dry-run"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
28
|
+
"@earendil-works/pi-coding-agent": "^0.85.0"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@henryqw/pi-herdr": "^0.4.1",
|
|
48
|
-
"@henryqw/pi-task-models": "^
|
|
48
|
+
"@henryqw/pi-task-models": "^5.0.0"
|
|
49
49
|
}
|
|
50
50
|
}
|