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-shadow-skill

v1.1.0

Published

A pi skill for shadow file management

Readme

pi-shadow-skill 🌑

Automatically load untracked repository-specific skill and context files without checking them into git.

Motivation

During development, developers may want their pi harness to autoload agent skills or AGENT.md documentation for a repository without committing these files for a variety of reasons, such as:

  • Developer-specific resources: Skills and context may be uniquely valuable to a developer's workflow, not needed by all collaborators
  • Work-in-progress: Resources are still being refined and shouldn't be committed to version control

Rather than using global gitignore rules (which are cumbersome and don't sync across worktrees when cloning), pi-shadow-skill provides a clean way to define additional context and skills for your workflows that automatically load for the repository.

How It Works

This pi package enables shadow skill loading via a configuration file.

  1. Create a shadow.json file in ~/.pi/agent/ with your repository-specific skills and documentation
  2. Define skills and documentation paths for your target repositories using their URLs as keys
  3. The pi extension automatically discovers and loads them without requiring git commits
  4. Your workflow context is preserved across worktrees and clones

Configuration Schema

Create ~/.pi/agent/shadow.json with the following structure:

{
  "repo-url.com": {
    "skills": [
      "path/to/skill-file-1.md",
      "path/to/skill-file-2.md"
    ],
    "readme": [
      "path/to/readme-extension-1.md",
      "path/to/readme-extension-2.md"
    ]
  }
}
  • skills: Array of paths to skill files (SKILL.md format) to load for this repository
  • readme: Array of paths to documentation files to load as repository context

Installation & Setup

  1. Install the package with pi:
pi install npm:pi-shadow-skill
  1. Restart your pi agent session so the extension is loaded.

You can verify installation by looking for a shadow-load notification (for example: 🌑 - Shadow config loaded: ...) when starting a session inside a git repository.

Configuring Skills for Your Repository

  1. Create or edit ~/.pi/agent/shadow.json (create the directory if it doesn't exist)
  2. Add an entry for your repository:
{
  "https://github.com/username/my-repo.git": {
    "skills": [
      "/home/user/my-skills/custom-skill.md",
      "/home/user/my-skills/workflow-skill.md"
    ],
    "readme": [
      "/home/user/docs/repo-context.md"
    ]
  }
}

The paths can be absolute paths to skill files on your system. When you work in that repository, these skills and documentation will automatically load.

License

See repository for license information.