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

@novasism/skillecta

v0.1.4

Published

Sync agent skills across AI coding assistants

Readme

skillecta

Keep your AI agent skills in sync. One source of truth, symlinked everywhere.

If you use multiple AI coding assistants (Claude, Cursor, etc.) and want to share skills between them, skillecta manages the symlinks so you don't have to.

Install

npm i -g @novasism/skillecta

How it works

You keep your skills in ~/.agents/skills/. Each skill is a folder (typically containing a SKILL.md). Skillecta symlinks them into agent-specific directories like ~/.claude/skills/ and ~/.cursor/skills/.

~/.agents/skills/          <- source of truth
  commit-skill/
  react-doctor/

~/.claude/skills/
  commit-skill -> ~/.agents/skills/commit-skill
  react-doctor -> ~/.agents/skills/react-doctor

~/.cursor/skills/
  commit-skill -> ~/.agents/skills/commit-skill
  react-doctor -> ~/.agents/skills/react-doctor

Usage

# See what's in sync and what's not
skillecta status

# Link all source skills to every agent
skillecta sync

# Found a skill in an agent folder that's not in source? Adopt it
skillecta adopt

# Just list source skills
skillecta list

Both sync and adopt support --dry-run to preview changes.

Config (optional)

By default, skillecta knows about Claude (~/.claude) and Cursor (~/.cursor). To add more agents, create ~/.agents/config.toml:

[agents.claude]
path = "~/.claude"

[agents.cursor]
path = "~/.cursor"

[agents.windsurf]
path = "~/.windsurf"
skills_dir = "skills"  # defaults to "skills"

Environment variables

| Variable | Default | Description | |---|---|---| | SKILLECTA_SOURCE | ~/.agents/skills | Source skills directory | | SKILLECTA_CONFIG | ~/.agents/config.toml | Config file path |

License

MIT