agegr/pi-web
原文摘要
Web UI for the pi coding agent Pi Web 中文文档 Local web UI for the pi coding agent . Pi Web reads your local pi session files and gives you a browser workspace for session browsing, real-time chat, model configuration, skill management, and project file preview. The same pi session in CLI and Pi Web: structured tool calls, readable Markdown, session browsing, and cleaner results. Quick Start Run without installing: npx @agegr/pi-web@latest Or install globally: npm install -g @agegr/pi-web pi-web Then open http://localhost:30141 . The CLI will try to open the browser automatically after the server is ready. Options: pi-web --port 8080 # custom port pi-web --hostname 127.0.0.1 # local access only pi-web -p 8080 -H 127.0.0.1 # combine options pi-web --no-open # do not open the browser automatically PORT=8080 pi-web # environment variable is also supported PI_WEB_NO_OPEN=1 pi-web # useful when running as a background service Features Pick work back up : browse previous pi conversations by project without digging through terminal history or session paths. Try different directions safely : continue from an earlier message or fork a session into a separate route. Work across branches : switc…