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

@siddr/pi-side

v0.1.2

Published

Ephemeral floating side chat extension for pi

Readme

@siddr/pi-side

Ephemeral floating side conversations for pi.

Installation

pi install npm:@siddr/pi-side

For local development, symlink this directory to ~/.pi/agent/extensions/side and run /reload.

Usage

/side
/side What does the latest error mean?

/side creates an in-memory child AgentSession, immediately opens a centered floating overlay, and summarizes a frozen snapshot of the current main branch in the background. You can type while summarization runs; sending is enabled when it finishes. The main agent continues independently behind the overlay. Only one side chat can be open at a time.

The initial summary is compact rather than a raw conversation copy and appears as a scrollable Parent summary ready message in the side-chat transcript. The side agent can inspect finalized live main-session activity—including messages created after it opened—through dedicated status, update, search, and read tools. Summary failures are non-fatal; the live inspection tools remain available.

Controls

The overlay honors pi's configured keybindings for:

  • input submission and newline insertion
  • model selection and forward/backward model cycling
  • thinking-level cycling
  • interrupting an active side turn

PageUp/PageDown scroll the transcript. Global Ctrl+Shift+S opens the side chat and toggles its panel without stopping the child. The centered panel tracks 50% of the main terminal height; Ctrl+Shift+S also hides the focused panel. Ctrl+C or Ctrl+D closes and discards the side chat. Side messages and tool activity use pi's standard main-TUI renderers. The active side model and thinking level remain available in the header, but their standard pi shortcuts are intentionally omitted from the panel's shortcut footer. Model selection and cycling honor the parent session's resolved model scope, including pinned thinking levels; an unscoped parent exposes all authenticated models. Model and thinking changes affect only the in-memory child.

Read-only behavior

The child receives only these project tools:

  • read
  • grep
  • find
  • ls

It does not receive bash, edit, write, child extensions, or subagent tools. Both sessions share the same working directory, so reads may observe files changing while the main agent works.

The side agent also has main_session_send_message. It may use this only after an explicit request to affect the main chat, and sends the exact message directly as a steer or followUp.

Lifecycle

The child uses an in-memory session and is never added to /resume. Closing the overlay aborts active side work and disposes the child. Parent /new, /resume, /fork, /reload, shutdown, or extension teardown also closes it. Parent /tree navigation leaves it open; inspection tools report branch divergence.

Limitations

  • The summary and inspection tools only see finalized parent messages, not partial streaming text.
  • Summaries are intentionally lossy; use the main-session tools when exact context matters.
  • The overlay API is experimental in pi.
  • Side prompts cannot currently be queued while the child is already running; interrupt or wait for it to settle.