pi-open-tui 0.1.0 → 0.2.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 +2 -0
- package/assets/.gitkeep +0 -0
- package/assets/preview_dashboard_1.png +0 -0
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A polished TUI for [Pi](https://pi.dev) coding agent. Combines the best of pi-haiku, pi-claude-code-tui, and pi-zentui into one cohesive package.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
## What's in it
|
|
6
8
|
|
|
7
9
|
- **Animated Pi logo header** — 16-frame color-changing logo animation + "Let's build something great" tagline
|
package/assets/.gitkeep
ADDED
|
File without changes
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-open-tui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A polished TUI for Pi coding agent: animated logo header, Starship-style footer, rounded editor with model metadata, and prompt-box user messages. Combines the best of pi-haiku, pi-claude-code-tui, and pi-zentui.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"files": [
|
|
17
17
|
"extensions/",
|
|
18
|
+
"assets/",
|
|
18
19
|
"README.md",
|
|
19
20
|
"LICENSE"
|
|
20
21
|
],
|
|
@@ -25,7 +26,8 @@
|
|
|
25
26
|
"pi": {
|
|
26
27
|
"extensions": [
|
|
27
28
|
"./extensions/open-tui/index.ts"
|
|
28
|
-
]
|
|
29
|
+
],
|
|
30
|
+
"image": "https://raw.githubusercontent.com/OldSuns/pi-open-tui/main/assets/preview_dashboard_1.png"
|
|
29
31
|
},
|
|
30
32
|
"peerDependencies": {
|
|
31
33
|
"@earendil-works/pi-coding-agent": ">=0.80",
|
|
@@ -49,5 +51,10 @@
|
|
|
49
51
|
"@earendil-works/pi-tui": "*",
|
|
50
52
|
"@types/node": "^22.0.0",
|
|
51
53
|
"typescript": "^5.5.0"
|
|
54
|
+
},
|
|
55
|
+
"allowScripts": {
|
|
56
|
+
"protobufjs@7.6.5": true,
|
|
57
|
+
"protobufjs@7.6.4": true,
|
|
58
|
+
"@google/genai@1.52.0": true
|
|
52
59
|
}
|
|
53
60
|
}
|