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

@jan_kalasnikov/skillsync

v0.1.0

Published

Automatically sync Cursor rules, agent skills, and AGENTS.md based on your package.json

Readme

skillsync

Automatically sync your IDE environment based on your project's package.json.

When you add a package, skillsync installs the matching Cursor rules, agent skills, and keeps your AGENTS.md up to date — so your AI coding setup never goes stale.

bun i
# skillsync runs via prepare hook

✓ Skills installed:
  → next-best-practices
  → supabase-postgres-best-practices
✓ Rules installed:
  → .cursor/rules/next.mdc
  → .cursor/rules/typescript.mdc
✓ AGENTS.md updated

⚠ prisma — no community skill found
  Run: npx skillsync create prisma

💡 Recommended: eslint (eslint/eslint)
   Pluggable linting utility for JavaScript and TypeScript

Install

npm install -D skillsync

Add the prepare hook to your package.json:

{
  "scripts": {
    "prepare": "skillsync sync"
  }
}

Now every bun i / npm i / pnpm i automatically syncs your Cursor environment.

Commands

skillsync sync

The core command. Reads your package.json, installs matching skills and rules, and updates AGENTS.md.

npx skillsync sync

What it does:

  1. Reads dependencies + devDependencies from package.json
  2. Installs matching agent skills from skills.sh
  3. Fetches matching Cursor rules from cursor.directory
  4. Diffs against what's already installed — never reinstalls existing assets
  5. Generates/updates AGENTS.md
  6. Suggests curated tools (opt-in only, never auto-installed)
  7. Flags packages with no community skill

Automatically skips in CI environments (CI=true).

skillsync create [package]

Generates a project-specific SKILL.md using Claude API. For packages where no community skill exists, this scans your actual codebase and creates a skill tailored to your setup.

npx skillsync create prisma

Requires ANTHROPIC_API_KEY in your environment. Never runs automatically — always manual opt-in.

skillsync status

Shows what's currently installed without making changes.

npx skillsync status

What gets created

your-project/
├── .cursor/rules/          ← always loaded into every Cursor session
│   ├── next.mdc
│   ├── typescript.mdc
│   └── prisma.mdc
├── skills/                 ← loaded on demand by Cursor agent
│   ├── next-best-practices/SKILL.md
│   └── prisma/SKILL.md
├── AGENTS.md               ← auto-maintained index for agents
└── package.json

| Directory | What it is | When it loads | |-----------|-----------|---------------| | .cursor/rules/*.mdc | Coding conventions | Every Cursor session | | skills/*/SKILL.md | Deep library expertise | On demand, when relevant | | AGENTS.md | Index of all skills | Always loaded upfront |

Supported packages

Skills and rules are mapped from a curated mapping.json. Current mappings:

| Package | Skill | Rule | Recommendation | |---------|-------|------|----------------| | next | next-best-practices | next.mdc | — | | react | — | react.mdc | — | | typescript | — | typescript.mdc | — | | @supabase/supabase-js | supabase-postgres-best-practices | — | — | | better-auth | better-auth-best-practices | — | — | | expo | building-native-ui | expo.mdc | — | | remotion | remotion-best-practices | — | — | | prisma | — | prisma.mdc | — | | drizzle-orm | — | — | — |

Packages not in the mapping are silently skipped during sync. Use skillsync create <package> to generate a custom skill for anything missing.

Data sources

| Source | What it provides | |--------|-----------------| | skills.sh | Community agent skills (Vercel, Supabase, Expo, etc.) | | cursor.directory | Coding convention rules as .mdc files | | Claude API | Custom skills generated from your codebase |

Design principles

  • Good defaults for vibe coders, full control for senior devs. Works out of the box for beginners. Experienced devs can edit any generated file.
  • Never auto-install paid features. skillsync create requires manual invocation and an API key.
  • Quality over quantity. The mapping is intentionally small and opinionated — every entry is vetted.
  • Recommendations, not mandates. Curated tools are suggested, never auto-installed.
  • Idempotent. Running sync twice produces the same result. Already-installed assets are skipped.

License

MIT