Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@agegr/pi-web

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agegr/pi-web

Web UI for the pi coding agent

npmnpm
Version
0.5.13
Version published
Weekly downloads
3K
5233.93%
Maintainers
1
Weekly downloads
 
Created
Source

pi-web

A web interface for the pi coding agent. Browse sessions, chat with the agent, fork conversations, and navigate message branches — all in the browser.

Installation

npm install -g @agegr/pi-web
pi-web

Open http://localhost:30141.

Options:

pi-web --port 8080               # custom port
pi-web --hostname 127.0.0.1      # local-only access
pi-web -p 8080 -H 127.0.0.1     # combined

PORT=8080 pi-web                 # env var also works

Development Setup

npm install
npm run dev

Features

  • Session browser — lists all pi sessions grouped by working directory
  • Live chat — sends messages to the agent with real-time streaming via SSE
  • Fork — branch a session from any user message into a new independent session
  • In-session branching — navigate back to any point and continue from there, creating a branch in the same session file
  • Branch navigator — visual switcher for branch points within a session
  • Model selector — switch models mid-session
  • Tool panel — toggle which tools the agent can use
  • Compact — summarize long sessions to save context window
  • Steer / Follow-up — interrupt the agent mid-run or queue a message for after it finishes

Notes

  • Agent data directory — reads sessions from ~/.pi/agent/sessions by default. Set PI_CODING_AGENT_DIR to use another agent directory.
  • Models — reads available models from models.json in the agent directory. You can edit them from the sidebar Models panel.
  • Files — the sidebar includes a file explorer for the current working directory and can open files in tabs.

Project structure

app/
  api/
    sessions/      # read/write session files
    agent/         # send commands, stream events via SSE
    files/         # read file contents for the in-app viewer
    models/        # list available models + default model
    models-config/ # read and write models.json
components/        # UI components
lib/
  session-reader.ts  # parse .jsonl session files
  rpc-manager.ts     # manage AgentSession lifecycle
  normalize.ts       # normalize toolCall field names (file vs. stream format)
  types.ts

Sessions are stored as .jsonl files at ~/.pi/agent/sessions/<encoded-cwd>/<timestamp>_<uuid>.jsonl.

FAQs

Package last updated on 19 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts