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

@gpambrozio/paseo-skills

v0.2.0

Published

Paseo plugin: lists the skills an agent can use, shows where each comes from, renders its SKILL.md, and invokes it

Readme

paseo-skills

A Paseo plugin that lists the agent skills available to an agent session, shows where each one comes from, renders its SKILL.md, and invokes it.

Works with every provider. Claude and Codex additionally get their skill files scanned off disk, which is what gives a skill a source, a path, and a rendered body; every other provider shows what its running session reports.

Install

Requires the Paseo CLI and a running daemon, both 0.9.0 or newer — as well as the app you view the panel in, which checks the version itself.

paseo plugin install npm:@gpambrozio/paseo-skills

That is the shortest route on Paseo 0.9 or newer, which installs plugins straight from npm; add @<version> to pin one. On 0.8, install the last release that supported it from this repository instead:

paseo plugin add gpambrozio/paseo-plugins --path skills

This repository holds five plugins, hence --path. The daemon clones it under $PASEO_HOME/plugins and runs no package manager — the plugin is source only, and everything it imports at runtime the host provides. Pin a release with --ref <tag>; later, paseo plugin status and paseo plugin update skills follow the branch.

To hack on it instead, install from a clone of your own:

git clone https://github.com/gpambrozio/paseo-plugins.git
cd paseo-plugins/skills
npm install
npm run typecheck && npm test
paseo plugin install "$PWD"

install records the directory, so keep that clone where it is — the daemon loads the plugin from that path every time it starts. npm install is for the typecheck and the tests; installing needs none of it.

The daemon needs "pluginsEnabled": true in its config.json. Run paseo reload after changing it. Plugin code is trusted and unsandboxed: the server half reads the daemon machine's filesystem and the client half runs inside the Paseo app. Read the source before installing this or any other plugin.

Use

Press the Skills pill above an agent's composer — its badge counts what the panel will list. The Command Center reaches the same panel: focus a workspace tab holding an agent, press ⌘K, and pick Skills.

Demo

https://github.com/user-attachments/assets/cbb0166e-d981-4367-a5b4-5b12d2e7c14c

Develop

npm test                     # vitest, resolvers only
npm run typecheck
paseo plugin reload skills   # after any source change
paseo plugin logs skills     # load errors and stderr

A failed reload stays failed; Paseo does not restore the previous code.

Layout

| File | Owns | | ----------------------------------- | ---------------------------------------------------------- | | index.client.tsx | Client wiring: the panel, the Command Center item, the pills. | | index.server.ts | Server wiring: the two RPC handlers. | | shared/skills.ts | zod RPC contracts, imported by both runtimes. | | server/skills.ts | RPC handlers; resolves the agent, dispatches by provider. | | server/resolve/claude.ts | Claude project, repository, personal, and plugin skills. | | server/resolve/codex.ts | Codex project, repository, personal, and admin skills. | | server/resolve/repo-root.ts | Walks up for .git, and lists the directories in between. | | server/resolve/skill-directory.ts | Scans one skills directory, and a whole search path. | | server/resolve/skill-entry.ts | Entry types, skill id construction, first-wins dedupe. | | server/resolve/frontmatter.ts | SKILL.md frontmatter parsing. | | server/resolve/reported.ts | Splits session-reported entries discovery did not find. | | client/panel.tsx | The panel: list, search, detail, invoke. | | client/pill.tsx | The composer pill and the registration loop that owns it. | | client/skills-query.tsx | The skills.list query the panel and the pill share. |

docs/design.md records why it is shaped this way. Read it before changing discovery.

License

MIT — see LICENSE.