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

@mrclrchtr/supi-skills

v7.3.0

Published

Scoped skill controls and skill input shortcuts for PI

Readme

@mrclrchtr/supi-skills

GitHub stars npm downloads

Adds scoped skill controls and $skill-name input shortcuts to the PI coding agent.

Install

Install the shared settings UI and this package:

pi install npm:@mrclrchtr/supi-settings
pi install npm:@mrclrchtr/supi-skills

For local development:

pi install ./packages/supi-skills

Skill controls

/supi-settings includes a searchable Skills section. Each skill has one of these effective states:

  • Enabled — PI loads the skill, and the model can invoke it.
  • Model invocation disabled — PI loads the skill for explicit user commands but omits it from the model's skill catalog.
  • Disabled — PI does not load the skill or its command.

Use Tab to switch between project and global scope. Project settings inherit global settings, and trusted project overrides take precedence. SuPi stores model-invocation preferences without changing SKILL.md; full load changes use PI resource settings and require /reload.

Skills that an extension adds only at runtime support Enabled and Model invocation disabled. PI does not provide a persistent load setting for these resources. PI exposes only the active source after a name collision, so disabling a static winner can reveal a runtime source after reload. The refreshed row then shows the runtime limitation.

Config shape

SuPi stores Model Invocation overrides as per-skill records in the SuPi config:

{
  "skills": {
    "$schemaVersion": 2,
    "review": {
      "modelInvocation": "disabled"
    }
  }
}

Use enabled or disabled as the stored value. An absent record or field inherits the source default, global value, or project value. Skill Load remains in PI's native settings. SuPi adds the schema marker so a skill named modelInvocation can use an ordinary record.

Older versions stored boolean values in skills.modelInvocation. SuPi reads that format and migrates valid entries on the next settings write. Invalid values remain preserved, marked as invalid, and produce a warning until they are repaired. A conflicting legacy fallback is kept under $legacyModelInvocation until the invalid record is repaired.

Session visibility

Install @mrclrchtr/supi-extras to use /supi-capabilities. Its Skills tab lists skills that PI has loaded and that persistent settings allow in the model catalog. It does not list unloaded skills or skills that persistent settings block.

A session visibility override hides a skill from the model prompt for the current session. It does not change PI settings or SuPi skill settings. The user can still run /skill:name or use $name. Resume restores the override. A fork copies it. Use Reset Skills to show all eligible skills again.

Input shortcut

$skill-name expands to /skill:skill-name. Skill-only autocomplete is active while the cursor is in a $... token.

Installed skill names are captured at session_start. Use /reload after you add or remove skills.

Credit

The skill controls are inspired by Whamp/pi-skill-toggle. SuPi uses PI's resource interfaces and shared settings UI instead of the upstream custom overlay and theme configuration.