pi-turns 1.5.1 → 1.5.4
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/CHANGELOG.md +16 -0
- package/README.md +12 -7
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.4
|
|
4
|
+
|
|
5
|
+
- Clearer package description and README intro.
|
|
6
|
+
|
|
7
|
+
## 1.5.3
|
|
8
|
+
|
|
9
|
+
- README and gallery images use jsDelivr URLs so they render on pi.dev/npm.
|
|
10
|
+
|
|
11
|
+
## 1.5.2
|
|
12
|
+
|
|
13
|
+
- README install uses `pi install npm:pi-turns`.
|
|
14
|
+
|
|
15
|
+
## 1.5.1
|
|
16
|
+
|
|
17
|
+
- Viewer footer lists `g`/`G`.
|
|
18
|
+
|
|
3
19
|
## 1.5.0
|
|
4
20
|
|
|
5
21
|
- Viewer shows up to 70% of the terminal height (was 45%, capped at 22 lines).
|
package/README.md
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
# pi-turns
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A read-only browser for the current [Pi](https://pi.dev) chat.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The main transcript scrolls away and wraps. `/turns` lists every **user** prompt and the full **assistant** reply (tool calls and thinking omitted; split assistant fragments merged). Open a turn to read Markdown, copy the original unwrapped text, star it for later, or search.
|
|
6
|
+
|
|
7
|
+
It never moves the session leaf. For branching, use `/tree`.
|
|
8
|
+
|
|
9
|
+

|
|
6
10
|
|
|
7
11
|
## Install
|
|
8
12
|
|
|
9
13
|
Requires [Pi](https://pi.dev) 0.84+ and Node 22+.
|
|
10
14
|
|
|
11
15
|
```sh
|
|
12
|
-
pi install
|
|
16
|
+
pi install npm:pi-turns
|
|
13
17
|
```
|
|
14
18
|
|
|
15
|
-
|
|
19
|
+
Or from git / a local clone:
|
|
16
20
|
|
|
17
21
|
```sh
|
|
22
|
+
pi install git:github.com/FarL1/pi-turns
|
|
18
23
|
pi install .
|
|
19
24
|
```
|
|
20
25
|
|
|
@@ -40,17 +45,17 @@ The list remembers the last opened turn. Search and the starred filter survive o
|
|
|
40
45
|
|
|
41
46
|
Enter opens the selected turn as Markdown:
|
|
42
47
|
|
|
43
|
-

|
|
48
|
+

|
|
44
49
|
|
|
45
50
|
## Star and search
|
|
46
51
|
|
|
47
52
|
`s` stars a turn. `f` shows only starred turns:
|
|
48
53
|
|
|
49
|
-

|
|
54
|
+

|
|
50
55
|
|
|
51
56
|
`/` filters as you type:
|
|
52
57
|
|
|
53
|
-

|
|
58
|
+

|
|
54
59
|
|
|
55
60
|
## Behavior
|
|
56
61
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-turns",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.5.4",
|
|
4
|
+
"description": "Read-only /turns for Pi: list this session's user and assistant replies, search, star, and open Markdown.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "FarL1",
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"extensions": [
|
|
43
43
|
"./extensions/index.ts"
|
|
44
44
|
],
|
|
45
|
-
"image": "https://
|
|
45
|
+
"image": "https://cdn.jsdelivr.net/gh/FarL1/pi-turns@main/screenshots/turns.png"
|
|
46
46
|
}
|
|
47
47
|
}
|