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

pi-phoenix

v0.1.3

Published

Phoenix tracing extension for pi

Readme

pi-phoenix

Phoenix tracing extension for pi. It sends OpenInference traces to Arize Phoenix so you can inspect pi sessions, system prompts, model calls, tool schemas, provider request payloads, and tool executions.

Why Arize?

Single binary + postgres. No ElasticSearch, no Kafka, no distributed tracing infrastructure to manage. Self-host in one container, or use the cloud offering.

Screenshots

Session overview

Phoenix session overview

Trace detail

Phoenix trace detail

Trace model

pi.session
├── Turn 1: describe the bug...
│   ├── anthropic/claude-sonnet-4
│   ├── read
│   └── bash
├── Turn 2: fix it
│   ├── anthropic/claude-sonnet-4
│   └── edit
└── ...
  • pi.session: one root session context
  • Turn n: one span per agent run
  • llm: one span per assistant/model response
  • tool: one span per tool execution

Install with pi

npm

pi install npm:pi-phoenix

GitHub

pi install github:philipbjorge/pi-phoenix

Local checkout

pi install /home/phil/src/pi-phoenix

Usage

Local Phoenix

docker run -d -p 6006:6006 arizephoenix/phoenix:latest
pi -e /home/phil/src/pi-phoenix/index.ts

Phoenix Cloud

export PHOENIX_COLLECTOR_ENDPOINT=https://app.phoenix.arize.com
export PHOENIX_API_KEY=your-api-key
export PI_PHOENIX_PROJECT=my-project
pi -e /home/phil/src/pi-phoenix/index.ts

Configuration

| Variable | Default | Description | | --- | --- | --- | | PI_PHOENIX_ENABLE | true | Enable or disable tracing | | PI_PHOENIX_PROJECT | git repo root basename or cwd basename | Project name shown in Phoenix | | PHOENIX_COLLECTOR_ENDPOINT | http://localhost:6006 | Phoenix server URL | | PHOENIX_API_KEY | unset | API key for Phoenix Cloud | | PI_PHOENIX_BATCH | false | Enable batch exporting | | PI_PHOENIX_MAX_ATTR_BYTES | 16384 | Max bytes captured per span attribute |

Development

cd /home/phil/src/pi-phoenix
npm install
npm run typecheck

OpenRouter model sync via npx

If you use OpenRouter, you can sync OpenRouter model pricing into Phoenix for accurate cost tracking:

npx pi-phoenix-sync-openrouter --dry-run
npx pi-phoenix-sync-openrouter
PHOENIX_GRAPHQL=http://your-phoenix:6006/graphql npx pi-phoenix-sync-openrouter

Options:

  • --dry-run: Print actions without mutating Phoenix
  • --limit N: Process only the first N models

License

MIT