npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@agegr/pi-web

v0.3.14

Published

Web UI for the pi coding agent

Readme

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:3030.

Set a custom port with the PORT environment variable:

PORT=8080 pi-web

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.