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

@wisemen/skills-cli

v0.1.0

Published

Sync AI coding skills from installed @wisemen/* packages into a consumer project, rendered per LLM target (Claude Code, AGENTS.md, llms.txt).

Readme

@wisemen/skills-cli

Sync AI coding skills from installed @wisemen/* packages into a consumer project.

What it does

When a @wisemen/* package ships a skills/ folder in its tarball, wisemen-skills sync pulls those skills into your project and renders them for each LLM you use:

  • SKILLS.agents/skills/packages@<pkg>@<skill>/SKILL.md

Skill versions track the installed package version automatically: bump @wisemen/vue-core-api-utils from 1.1.0 to 1.2.0 and the next sync picks up 1.2.0 skills.

Install

pnpm add -D @wisemen/skills-cli

Add to your root package.json:

{
  "scripts": {
    "skills:sync": "wisemen-skills sync",
    "skills:check": "wisemen-skills check",
    // Auto-sync on install. "|| true" ensures pnpm install never fails due to sync.
    "postinstall": "wisemen-skills sync --silent || true"
  }
}

.gitignore

Synced output is a derived artifact and should not be committed. Add to your .gitignore:

.agents/skills/package@*

Monorepo support

The CLI auto-detects monorepo workspace roots. When you run wisemen-skills sync from anywhere inside a workspace, it walks up from the current directory looking for pnpm-workspace.yaml or a package.json with a workspaces field, and syncs to that root.

maes/                            ← workspace root (auto-detected)
├── .agents/skills/      ← all skills rendered here
│   ├── @packages@wisemen-vue-core-api-utils-.../
│   ├── formango/
├── apps/
│   ├── web/
│   └── admin/
└── package.json                 ← postinstall: wisemen-skills sync

Use --cwd <path> to override auto-detection and sync to a specific directory.

Commands

| Command | Purpose | |---------|---------| | wisemen-skills sync | Scan node_modules/@wisemen/*, render all enabled adapters, write the lockfile. Idempotent — re-runs produce zero mutations if nothing changed. | | wisemen-skills check | Same scan, but exits non-zero if any output would change. Use in CI. | | wisemen-skills list | Print the discovered skills per package with descriptions. |

Flags

| Flag | Commands | Description | |------|----------|-------------| | --dry-run | sync | Print changes without writing files. | | --silent | all | Suppress informational output. | | --verbose | sync, check | Print every file that would change. | | --cwd <path> | all | Project root. Default: auto-detected workspace root, or current directory. |

Exit codes

| Code | Meaning | |------|---------| | 0 | Success (sync/list) or in-sync (check). | | 1 | Drift detected (check) or runtime error. |

Configuration

Optional wisemen-skills.config.json at project root. If multiple exist, the first match in that order wins.

{
  "packages": {
    // Allowlist — null means "all @wisemen/* packages". Set to an array
    // to restrict to specific packages.
    "allow": null,

    // Denylist — exclude specific packages from discovery.
    "deny": [],

    // Non-@wisemen-scoped packages that ship skills.
    // Default: ['formango'] (because formango is published without the @wisemen scope).
    "unscoped": ["formango"],
  },
}

All fields are optional — config is only needed to override defaults.

Authoring skills (for @wisemen/* package maintainers)

See docs/packages/_meta/authoring-skills.md in this repo.