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-skills-sync

v0.3.2

Published

Manage pi skills via GitHub Gists

Readme

pi-skills-sync

Manage your pi skills via GitHub Gists. Sync across devices, import local skills, backup to the cloud.

What is this?

pi-skills-sync is a pi plugin for managing personal skills using GitHub Gists as storage.

  • Store skills in private Gists
  • Sync across multiple machines via an index Gist
  • Import existing local skills

Commands

| Command | Description | |---------|-------------| | /ss:setup | Interactive setup (token + index Gist) | | /ss:add | Add skill from Gist URL | | /ss:import | Import local skill from ~/.pi/agent/skills | | /ss:sync | Sync all skills or a specific one (pull from Gist) | | /ss:push | Push local changes of a skill to its Gist | | /ss:remove | Remove skill from sync list | | /ss:list | List skills + config status |

Quick Start

# 1. Install
pi install npm:pi-skills-sync

# 2. Setup (first time)
/ss:setup

# 3. Add a skill from Gist
/ss:add https://gist.github.com/yourname/abc123

# 4. Import local skill
/ss:import my-local-skill

# 5. Sync (pull) or Push
/ss:sync
/ss:push my-local-skill

# 6. Remove a skill
/ss:remove my-local-skill

# 7. List all
/ss:list

Workflow

First Time Setup

/ss:setup
→ Create GitHub token (opens browser) or enter manually
→ Create or enter index Gist ID
→ Auto-sync? Yes/No
→ Saved!

Adding a Skill

  • From someone else's Gist: /ss:add <gist-url>
  • From your own Gist: Tab completion shows your gists starting with "skill"

Importing Local Skill

/ss:import my-skill
→ Reads ~/.pi/agent/skills/my-skill (supports subdirectories)
→ Creates new private Gist
→ Adds to management list

Syncing

  • /ss:sync - pull all changes from Gists
  • /ss:sync my-skill - pull specific skill

Pushing

  • /ss:push my-skill - push local edits to Gist

Removing

/ss:remove my-skill
→ Shows summary (Gist URL, local path, last sync)
→ Confirm removal
→ Delete Gist on GitHub? (Yes/No)
→ Keep local files? (Yes/No)

Index Gist

The index Gist is a private Gist that stores:

  • List of all managed skills
  • Skill names and Gist IDs
  • Last sync timestamps

Save the index Gist ID somewhere safe - you'll need it to restore on new machines.

On a New Machine

# Install plugin
pi install npm:pi-skills-sync

# Setup
/ss:setup
→ Enter GitHub token
→ Enter your saved index Gist ID

# Sync
/ss:sync → pulls all your skills!

Configuration

Stored in ~/.pi/agent/settings.json:

{
  "skillSync": {
    "githubToken": "ghp_...",
    "indexGistId": "abc123...",
    "autoSync": true
  }
}

Auto-Sync

When enabled, skills sync on every pi startup. Can be disabled during setup.

Security

GitHub token is stored in plaintext at ~/.pi/agent/settings.json. Use a fine-grained token scoped to gist only (no repo access).

License

MIT