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-kaush/pi-welcome-screen

v0.1.3

Published

Replace Pi's startup header with centered branding and a compact resource summary.

Readme

@pi-kaush/pi-welcome-screen

A compact, centered startup screen for the Pi coding agent. It keeps Pi's loaded context, skills, prompts, and extensions visible while replacing the stock header with a responsive branded layout.

Responsive Pi welcome screen in three-column, two-column, and stacked layouts

Why use it

  • Zero runtime dependencies — installs as readable TypeScript without pulling additional packages into your Pi setup.
  • Context files in load order — shows exactly which instructions Pi loaded and the order in which they apply.
  • Extensions grouped by source — separates Pi-local extensions, installed packages, and linked source paths.
  • Responsive layout — adapts from a stacked view to a full-width brand over two resource columns, then a dedicated brand beside two resource columns.
  • Fail-safe behavior — if the startup data or UI shape is unfamiliar, restores Pi's untouched native resource panel instead of hiding information.

Install

pi install npm:@pi-kaush/[email protected]

Restart Pi or run /reload.

Run from a local clone

From any project, point Pi at the extension's source file:

pi -e ~/path/to/pi-kaush/extensions/pi-welcome-screen/src/index.ts

Use --no-extensions before -e to test it without your other configured extensions.

Compatibility

The extension installs its header through Pi's public ctx.ui.setHeader() API. Pi 0.80.6 does not expose structured startup-resource data, so the extension also uses a narrowly guarded bridge to inspect and temporarily relocate Pi's native startup-resource panel.

Every expected component shape is checked before it is touched. If Pi changes the panel, exposes an unknown section, or produces incomplete resource data, the extension restores Pi's untouched native panel rather than hiding information. The initial release is tested against Pi 0.80.6.

Like any custom-header extension, it shares Pi's single header slot. If another extension also calls setHeader(), the last installed header wins; neither extension needs to replace the editor or intercept terminal input.

Security and performance

The package contains readable TypeScript and has:

  • no runtime dependencies or install scripts;
  • no network, subprocess, clipboard, prompt, tool, model, or telemetry access;
  • no background work after the startup resource snapshot completes.

At startup it reads only the names of entries in Pi's local extension directory and the text already rendered in Pi's startup-resource panel so extensions can be grouped by provenance. Resource capture uses at most three short 50 ms retries and is then disposed or replaced by Pi's native panel.

Development

From the repository root:

npm ci --ignore-scripts
npm run check

Inspect the exact publish payload:

npm pack --workspace @pi-kaush/pi-welcome-screen --dry-run

License

MIT