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-auto-theme

v1.1.1

Published

Auto-sync pi theme with OS appearance

Readme

pi-auto-theme

npm version

A simple extension for the pi coding agent that automatically changes the theme from dark to light (and vice versa) based on the theme of your operating system.

pi-auto-theme demo

Features

  • Instant Reactions: This extension does NOT depend on 'polling' every N seconds. Instead, it uses crossterm-system-theme with a native listener for theme changes, allowing it to react to OS-level theme changes instantly.
  • (Note: It does fall back to a 3-second poll in certain Linux desktop environments if it cannot find a way to listen natively, but this rarely happens.)
  • No Clutter: This pi extension is lightweight. It adds a single /theme command to allow manual overrides.
  • Commands:
    • /theme auto: Syncs the theme with your OS natively.
    • /theme dark: Overrides auto-sync and forces dark theme.
    • /theme light: Overrides auto-sync and forces light theme.

Installation

Install the extension globally:

pi install npm:pi-auto-theme

Install it only for the current project:

pi install npm:pi-auto-theme -l

Or run it temporarily without installing:

pi -e npm:pi-auto-theme

If you have cloned the repository, you can run it from the local directory:

pi -e ./index.ts

How it works

When the extension is loaded, it checks the current OS theme and immediately sets the pi UI theme. It also sets up a native theme change listener using crossterm-system-theme. If your OS switches between Light and Dark mode, the pi TUI will update instantly without restarting the session.

License

ISC