pi-turns 1.5.2 → 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 CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 1.5.2
4
12
 
5
13
  - README install uses `pi install npm:pi-turns`.
package/README.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # pi-turns
2
2
 
3
- Browse the current [Pi](https://pi.dev) session as user and assistant turns.
3
+ A read-only browser for the current [Pi](https://pi.dev) chat.
4
4
 
5
- ![Turn list](screenshots/turns.png)
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
+ ![Turn list](https://cdn.jsdelivr.net/gh/FarL1/pi-turns@main/screenshots/turns.png)
6
10
 
7
11
  ## Install
8
12
 
@@ -41,17 +45,17 @@ The list remembers the last opened turn. Search and the starred filter survive o
41
45
 
42
46
  Enter opens the selected turn as Markdown:
43
47
 
44
- ![Markdown viewer](screenshots/viewer.png)
48
+ ![Markdown viewer](https://cdn.jsdelivr.net/gh/FarL1/pi-turns@main/screenshots/viewer.png)
45
49
 
46
50
  ## Star and search
47
51
 
48
52
  `s` stars a turn. `f` shows only starred turns:
49
53
 
50
- ![Starred filter](screenshots/starred.png)
54
+ ![Starred filter](https://cdn.jsdelivr.net/gh/FarL1/pi-turns@main/screenshots/starred.png)
51
55
 
52
56
  `/` filters as you type:
53
57
 
54
- ![Search](screenshots/search.png)
58
+ ![Search](https://cdn.jsdelivr.net/gh/FarL1/pi-turns@main/screenshots/search.png)
55
59
 
56
60
  ## Behavior
57
61
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-turns",
3
- "version": "1.5.2",
4
- "description": "Browse the current Pi session as user and assistant turns.",
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://raw.githubusercontent.com/FarL1/pi-turns/main/screenshots/turns.png"
45
+ "image": "https://cdn.jsdelivr.net/gh/FarL1/pi-turns@main/screenshots/turns.png"
46
46
  }
47
47
  }