@firstpick/pi-package-webui 0.1.3 → 0.1.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/README.md +4 -2
- package/package.json +1 -1
- package/public/app.js +620 -19
- package/public/index.html +30 -0
- package/public/service-worker.js +1 -1
- package/public/styles.css +362 -7
- package/tests/mobile-static.test.mjs +63 -5
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ pi-webui --cwd /path/to/project
|
|
|
51
51
|
- Browser chat with Pi over RPC
|
|
52
52
|
- Isolated terminal tabs: each Web UI tab starts its own separate `pi --mode rpc` subprocess, event stream, session state, and prompt draft
|
|
53
53
|
- Automatic tab naming from the first prompt on default-named tabs, plus `/name <title>` to manually sync the Pi session and browser tab name
|
|
54
|
-
- Per-tab activity indicators for idle, working, blocked, and completed unseen work, with browser notifications when a tab needs an extension UI response
|
|
54
|
+
- Per-tab activity indicators for idle, working, blocked, and completed unseen work, with browser notifications when a tab needs an extension UI response and an optional side-panel toggle for agent-done notifications
|
|
55
55
|
- Live assistant text streaming, including streamed thinking blocks when exposed by the provider
|
|
56
56
|
- Prompt, steer, follow-up, abort, new session, and manual compact controls
|
|
57
57
|
- Busy-session behavior selector for follow-up vs steer
|
|
@@ -62,9 +62,11 @@ pi-webui --cwd /path/to/project
|
|
|
62
62
|
- Collapsible side panel with session state, queue, available commands, events, local-network exposure status/control, and a theme picker
|
|
63
63
|
- Pi-style footer with token, cache, estimated Pi-context tokens, speed, cost, context usage, clickable per-tab cwd picker with server-persisted fast picks, git branch, changes, runtime, model, and thinking level
|
|
64
64
|
- Guided Git workflow: `git add .`, ask Pi to run `/git-staged-msg`, preview short/long messages, commit with the selected message, and `git push`
|
|
65
|
+
- Hover-expand Publish workflow menu beside Git workflow, currently offering NPM Release and AUR Release
|
|
65
66
|
- Basic rendering for user, assistant, tool result, bash execution, and thinking messages
|
|
66
67
|
- Feedback reactions (`👍`, `👎`, `?`) on final assistant output plus tool/bash action cards, with queued post-run submission that asks Pi to create/update a LEARNING
|
|
67
68
|
- Basic extension UI bridge for `notify`, `setStatus`, `setWidget`, `setTitle`, `set_editor_text`, `select`, `confirm`, `input`, and `editor`
|
|
69
|
+
- Specialized `/release-npm` and `/release-aur` widget rendering with scrollable live logs plus toggle/abort actions
|
|
68
70
|
- Side-panel theme picker backed by the bundled `@firstpick/pi-themes-bundle` themes
|
|
69
71
|
- PWA metadata, icons, and service worker for install-to-home-screen support when served from a secure context
|
|
70
72
|
- Static frontend: no bundler, no frontend install step
|
|
@@ -73,7 +75,7 @@ pi-webui --cwd /path/to/project
|
|
|
73
75
|
|
|
74
76
|
- The mobile composer starts as a one-line `Ask Pi…` input, grows with user-entered lines, and scrolls the transcript to the latest output when focused.
|
|
75
77
|
- When Pi is idle, `Steer` and `Follow-up` live inside `Actions`; while a run is active, they move back into the main composer row for quick steering/follow-up.
|
|
76
|
-
- PWA install support
|
|
78
|
+
- PWA install support, blocked-tab browser notifications, and optional agent-done notifications require browser service-worker/notification support and usually HTTPS or `localhost`. Plain `http://<LAN-IP>` may show the app but may not offer install or notifications on Chrome/Safari.
|
|
77
79
|
|
|
78
80
|
## Pi slash commands
|
|
79
81
|
|
package/package.json
CHANGED