@jyork0828/pi-pilot 0.0.1
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 +32 -0
- package/dist/index.js +2395 -0
- package/dist/index.js.map +1 -0
- package/package.json +43 -0
- package/public/assets/index-Bqpj-esU.css +1 -0
- package/public/assets/index-e1hZMoPP.js +218 -0
- package/public/index.html +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# pi-pilot
|
|
2
|
+
|
|
3
|
+
Browser UI for the pi coding agent.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Requires Node.js 20+.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @jyork0828/pi-pilot
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or install globally:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g @jyork0828/pi-pilot
|
|
17
|
+
pi-pilot
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Then open http://127.0.0.1:5174.
|
|
21
|
+
|
|
22
|
+
The CLI starts one local Node.js process that serves both the React app and
|
|
23
|
+
the backend API/WebSocket. It binds to localhost only by design.
|
|
24
|
+
|
|
25
|
+
Set `PI_PILOT_PORT` to choose a different port:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
PI_PILOT_PORT=3000 pi-pilot
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
You also need at least one LLM credential configured for `pi` itself, such as
|
|
32
|
+
an `ANTHROPIC_API_KEY` environment variable or a prior `pi /login`.
|