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-git-graph-sidebar

v0.1.0

Published

A VS Code Git Graph-style sidebar overlay for the Pi coding agent TUI.

Readme

pi-git-graph-sidebar

A VS Code Git Graph-style sidebar overlay for the Pi coding agent TUI.

It opens an interactive right-side graph of your repository history using git log --graph --decorate --oneline --all.

Features

  • Right-side responsive TUI overlay/sidebar
  • ASCII commit graph across all refs
  • Branch/decorator display from Git
  • Keyboard navigation
  • Refresh without closing the sidebar
  • Works as a Pi package installed from npm or GitHub

Preview

╭──────────────── Git Graph ────────────────╮
│branch main • 120/120                      │
│cwd /path/to/repo                          │
├───────────────────────────────────────────┤
│› * a1b2c3d (HEAD -> main, origin/main) ...│
│  * d4e5f6a Add feature                    │
│  | * 123abcd (feature/x) Try variant      │
│  |/                                      │
│  * 987fedc Initial commit                 │
├───────────────────────────────────────────┤
│↑↓/jk scroll • r refresh • q/esc close     │
╰───────────────────────────────────────────╯

Installation

From npm

pi install npm:pi-git-graph-sidebar

Then restart Pi or run /reload in an existing Pi TUI session.

From GitHub

pi install git:github.com/yuxiang-gao/pi-git-graph-sidebar

Try without installing

pi -e npm:pi-git-graph-sidebar
# or
pi -e git:github.com/yuxiang-gao/pi-git-graph-sidebar

Manual local install

mkdir -p ~/.pi/agent/extensions
curl -L \
  https://raw.githubusercontent.com/yuxiang-gao/pi-git-graph-sidebar/main/extensions/git-graph-sidebar.ts \
  -o ~/.pi/agent/extensions/git-graph-sidebar.ts

Restart Pi or run /reload.

Usage

Open the sidebar:

/git-graph

Open with a custom commit limit:

/git-graph 200

Keyboard shortcut:

ctrl+shift+g

Keyboard controls inside the sidebar:

| Key | Action | | --- | --- | | / k | Move up | | / j | Move down | | PgUp / ctrl+u | Page up | | PgDn / ctrl+d | Page down | | g | Jump to top | | G | Jump to bottom | | r | Refresh graph | | q / esc | Close sidebar |

Notes

  • Requires git on PATH.
  • The sidebar is visible only when the terminal is at least 90 columns wide.
  • The default commit limit is 120; the maximum accepted limit is 500.
  • Pi packages run extension code with local system access. Review code before installing third-party packages.

Development

Clone and run Pi with the local package:

git clone https://github.com/yuxiang-gao/pi-git-graph-sidebar.git
cd pi-git-graph-sidebar
pi -e .

Or install the local checkout globally:

pi install /absolute/path/to/pi-git-graph-sidebar

License

MIT