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

skills-of-mine

v0.1.3

Published

AI skills sync manager - aggregate and distribute skills across AI coding tools

Readme

Skills of Mine

Infrastructure for syncing AI skills across multiple code agents.

This tool is designed for workflows where the same skill is tested across different agents, rather than optimized for a single one.

If you’re happy with a unified agent experience (for example, Claude Code Max), this project may be unnecessary.

Installation

npm install -g skills-of-mine

Quick Start

# Interactive setup wizard
skills-of-mine init

# Sync skills
skills-of-mine sync

Why This Exists (and When You Might Not Need It)

When I come across a skill that looks promising, my first instinct is to try it out.

Very quickly, I realized that what I actually wanted to evaluate wasn’t just the skill itself, but how different code agents perform when using the same skill.

That’s the motivation behind this project.

skills-of-mine is designed for workflows where:

  • you experiment with the same skill across multiple code agents
  • you want to compare, combine, or specialize agents rather than committing to just one
  • you treat skills as shared assets, not tool-specific snippets

When You Probably Don’t Need This

If, in the future, code agents converge into a single, unified solution, this project will likely become unnecessary. Some tools already show early signs of this direction.

You also probably don’t need this project if:

  • you only use a single code agent
  • you don’t care about comparing skill performance across agents

A Note on Multi-Agent Workflows

If you’re running multiple code agents in parallel and want each of them to focus on what they do best, I highly recommend looking into solutions like OpenCode, which align well with this kind of setup.

Commands

| Command | Description | |---------|-------------| | skills-of-mine init | Interactive setup wizard | | skills-of-mine sync | Sync skills from sources to destinations | | skills-of-mine list | List installed skills and destinations | | skills-of-mine add <url> | Add a custom source | | skills-of-mine remove <name> | Remove a source | | skills-of-mine update | Update all sources to latest |

How It Works

  1. Select AI tools — Choose which tools to sync (Claude Code, Cursor, Windsurf, etc.)
  2. Select skill sources — Choose from preset sources or add custom ones
  3. Sync — Skills are cloned, aggregated with namespace prefixes, and symlinked to destinations

Namespace Prefixes

To avoid conflicts between skills with the same name from different sources, skills are prefixed with the org name:

| Source | Skill | Result | |--------|-------|--------| | anthropics/skills | brainstorming | anthropics__brainstorming | | obra/superpowers | brainstorming | obra__brainstorming |

Preset Sources

  • anthropics/skills — Official Anthropic skills
  • obra/superpowers — Development workflow enhancements
  • remotion-dev/skills — Video creation with Remotion
  • vercel-labs/agent-skills — React/Next.js best practices ㄎ

Preset Destinations

  • OpenCode (~/.config/opencode/skills)
  • Codex (~/.codex/skills)
  • Cursor (~/.cursor/skills)
  • Antigravity (~/.gemini/antigravity/skills)
  • Gemini (~/.gemini/skills)
  • Windsurf (~/.codeium/windsurf/skills)
  • Claude Code (~/.claude/skills)

Configuration

Config is stored in ~/.skills-of-mine/config.json:

{
  "selectedSources": ["anthropics/skills", "obra/superpowers"],
  "selectedDestinations": ["claude", "cursor"],
  "customSources": [],
  "customDestinations": []
}

Adding Custom Sources

skills-of-mine add https://github.com/user/repo#skills-folder
skills-of-mine sync

Platform Support

  • ✓ macOS
  • ✓ Linux
  • ✗ Windows (not supported yet — symlinks require admin privileges)

Requirements

  • Node.js 18+
  • Git

License

MIT