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

@kaiserlich-dev/pi-skill-picker

v1.0.0

Published

Namespace-aware skill palette for pi — groups skills by category folder

Downloads

59

Readme

pi-skill-picker

Namespace-aware skill palette for pi. Groups skills by category folder (marketing, infra, comms, etc.) for faster discovery.

Install

pi install git:github.com/kaiserlich-dev/pi-skill-picker

Usage

Alt+K — open the skill palette instantly.

Or use the /skill command:

/skill                          # opens palette
/skill marketing:ad-creative    # queue directly
/skill brave-search             # queue by name

Features

Namespace grouping

Skills are auto-grouped by their category folder. The namespace is derived from:

  1. Symlink targets~/.pi/agent/skills/ad-creative -> .../marketing/ad-creative → namespace marketing
  2. Directory hierarchy.pi/skills/marketing/ad-creative/SKILL.md → namespace marketing
  3. Fallback — skills without a parent category go to other

No changes to SKILL.md files needed. Fully compatible with the Agent Skills spec.

Smart search

When you type, results are shown as a flat list sorted by relevance — no namespace grouping to bury high-scoring results.

| Input | Behavior | |-------|----------| | marketing | Shows all skills in the marketing namespace | | marketing:ad | Matches within the marketing namespace | | prod | Prefix match → shows all productivity skills | | supabase | Finds supabase-ro, supabase-vectors by name | | ad | ad-creative first (starts-with beats substring) |

Scoring: exact match > starts-with > substring (boundary-aware) > fuzzy. Description matches are substring-only to avoid garbage results.

Recently used skills

Your most-used skills appear in a ★ recent section at the top of the palette, pre-selected. Usage count is shown for skills used more than once (×3).

Persisted to ~/.pi-skill-picker/usage.json — survives across sessions.

Skill injection

Selected skills are queued and injected alongside your next message via before_agent_start. A widget and status indicator show the queued skill until consumed.

Keyboard Shortcuts

| Key | Action | |-----|--------| | Alt+K | Open palette from anywhere | | / | Navigate (skips headers) | | Enter | Select skill / Unqueue if already queued | | Esc | Cancel | | Type | Filter |

Development

# Link locally
pi -e ./extensions/skill-palette.ts