@zigai/pi-response-renderer 0.1.1 → 0.1.5
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 -4
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
# Pi Response Renderer
|
|
2
2
|
|
|
3
|
-
Pi
|
|
3
|
+
This Pi extension makes assistant responses more compact by tightening extra blank lines and hiding Markdown code fence markers.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
It applies a few small rendering tweaks:
|
|
6
|
+
|
|
7
|
+
- hides the visible ``` fence lines around rendered Markdown code blocks in assistant messages
|
|
8
|
+
- collapses some extra blank lines between plain paragraph lines
|
|
9
|
+
- removes italic ANSI styling from assistant message output
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
The goal is a cleaner transcript with less visual noise while keeping the message content itself unchanged.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
8
14
|
|
|
9
15
|
```sh
|
|
10
|
-
pi install
|
|
16
|
+
pi install git:github.com/zigai/pi-ux-tweaks
|
|
11
17
|
```
|
|
18
|
+
|
|
19
|
+
The extension only changes how messages are rendered in the UI. It does not rewrite saved conversation content.
|
package/package.json
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zigai/pi-response-renderer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Pi package for personal response rendering tweaks.",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"pi",
|
|
7
|
+
"pi-coding-agent",
|
|
6
8
|
"pi-extension",
|
|
7
9
|
"pi-package",
|
|
8
|
-
"pi-
|
|
10
|
+
"pi-ux",
|
|
9
11
|
"rendering"
|
|
10
12
|
],
|
|
13
|
+
"homepage": "https://github.com/zigai/pi-ux-tweaks/tree/main/packages/pi-response-renderer#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/zigai/pi-ux-tweaks/issues"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "zigai",
|
|
11
19
|
"repository": {
|
|
12
20
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/zigai/pi-
|
|
21
|
+
"url": "git+https://github.com/zigai/pi-ux-tweaks.git",
|
|
14
22
|
"directory": "packages/pi-response-renderer"
|
|
15
23
|
},
|
|
16
24
|
"files": [
|