@narumitw/pi-btw 0.50.0 → 0.51.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 +8 -7
- package/package.json +2 -2
- package/src/menu.ts +1 -0
package/README.md
CHANGED
|
@@ -58,14 +58,15 @@ Examples:
|
|
|
58
58
|
/btw is this API name idiomatic?
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
Running `/btw` alone opens a menu with **Start side thread** selected first.
|
|
62
|
-
session has non-empty side threads in memory, **Resume side thread** opens a bounded choice list
|
|
61
|
+
Running `/btw` alone opens a menu with **Start side thread** selected first.
|
|
62
|
+
When the current Pi session has non-empty side threads in memory, **Resume side thread** opens a bounded searchable choice list.
|
|
63
|
+
Search matches the displayed first question and question count while returning the thread's raw in-memory ID.
|
|
63
64
|
**Settings** changes the starting thinking level and whether shortcut changes are remembered.
|
|
64
|
-
Each Resume row keeps the first question as its fixed title, shows its question count, and the list
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
terminal view.
|
|
65
|
+
Each Resume row keeps the first question as its fixed title, shows its question count, and the list is ordered by the newest recorded answer or visible error.
|
|
66
|
+
Opening and closing a thread without a new result does not reorder it.
|
|
67
|
+
`/btw <question>` bypasses this menu and always starts a fresh side thread.
|
|
68
|
+
Its answer opens above the side-thread editor.
|
|
69
|
+
The side thread uses a dedicated full-screen terminal view.
|
|
69
70
|
The main agent continues running in the background, but its screen rendering stays suspended until
|
|
70
71
|
`/btw` closes, so new main-thread output cannot move a mouse selection inside the side thread.
|
|
71
72
|
Drag the primary mouse button across side-thread text to select and copy it through Pi's terminal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@narumitw/pi-btw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.51.0",
|
|
4
4
|
"description": "Pi extension that adds a /btw side-question command.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"directory": "packages/pi-btw"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@narumitw/pi-tui-kit": "^0.
|
|
46
|
+
"@narumitw/pi-tui-kit": "^0.54.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@earendil-works/pi-ai": "*",
|
package/src/menu.ts
CHANGED