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

proskills

v0.0.3

Published

The Canonical Manager for Agent Skill Subsets

Readme

proskills

The Canonical Manager for Agent Skill Subsets

proskills is a CLI tool designed to solve the "Skill Overload" problem for AI agent harnesses. It allows you to maintain a Canonical Library of all your skills while exposing only specific subsets via profiles.

It leverages the skills ecosystem (must be installed in your environment) to fetch and install skills directly into your local library.


1. Installation

# Recommended installation via NPM
npm install -g proskills skills

Note: proskills leverages the skills CLI for fetching new skills. Both must be installed.


2. Example Workflow

  1. Initialize the system:

    proskills init
  2. Fetch a skill from the ecosystem into your library:

    proskills add vercel-labs/agent-skills/skills/find-skills
  3. Create a profile and add the skill to it:

    proskills profile create my-tools
    proskills profile add my-tools find-skills
  4. Get XML metadata for your profile (for agent injection):

    proskills profile get-skills my-tools
    # Output:
    # <available_skills>
    #   <skill>
    #     <name>find-skills</name>
    #     <description>Helps users discover and install agent skills...</description>
    #     <location>/Users/youruser/.agents/db/profiles/my-tools/skills/find-skills/SKILL.md</location>
    #   </skill>
    # </available_skills>
  5. Get paths for your agent configuration:

    proskills profile get-paths my-tools
    # Output:
    # /Users/youruser/.agents/db/profiles/my-tools/skills/find-skills

3. Command Reference

proskills init

Sets up the infrastructure in ~/.agents/db/.

proskills add <source>

Fetches a skill from an external source (e.g., GitHub owner/repo, URL) and adds it to your local library.

  • Example: proskills add vercel-labs/agent-skills/skills/find-skills

proskills delete <skill-id>

Removes a skill from your local library.

  • Example: proskills delete find-skills

proskills get-skills [id]

Outputs skills in an XML format designed for programmatic consumption by AI agents (includes name, description, and path to SKILL.md).

  • If id is a profile name, it returns all skills in that profile.

  • If id is a skill name, it returns that specific skill.

  • If id is omitted, it returns all skills in your library.

  • Example: proskills get-skills automation

proskills profile create <profile-id>

Initializes a new, empty profile definition.

  • Example: proskills profile create automation

proskills profile add <profile-id> <skill-id>

Adds a skill from your local library to a specific profile.

  • Example: proskills profile add automation find-skills

proskills profile remove <profile-id> <skill-id>

Removes a skill from a specific profile (does not delete the skill from the library).

  • Example: proskills profile remove automation find-skills

proskills profile delete <profile-id>

Deletes a profile definition.

  • Example: proskills profile delete automation

proskills profile get-skills [id]

Outputs skills in an XML format designed for programmatic consumption by AI agents (includes name, description, and path to SKILL.md).

  • If id is a profile name, it returns all skills in that profile.

  • If id is omitted, it returns all skills in your library.

  • Example: proskills profile get-skills automation

  • Output Example:

    <available_skills>
      <skill>
        <name>find-skills</name>
        <description>Helps users discover and install agent skills...</description>
        <location>/Users/youruser/.agents/db/profiles/automation/skills/find-skills/SKILL.md</location>
      </skill>
    </available_skills>

proskills profile get-paths <profile-id>

Outputs the absolute paths of all skills defined in the chosen profile, one per line.

  • Example: proskills profile get-paths automation

proskills profile list

Displays all available profiles and the number of skills they contain.

proskills list

Displays all skills currently in your local library.

proskills status

Shows an overview of the library contents and current profile mappings.


4. Technical Architecture

Skill Storage & Resolution

Skills are stored in ~/.agents/db/skills. When adding a skill to a profile, proskills resolves the ID by checking for exact matches or matches with extensions in the library.

Profile Storage

Profiles are stored in their own directories with a configuration file:

// ~/.agents/db/profiles/automation/automation.json
{
  "skills": ["find-skills"]
}