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

agent-skills-standard

v2.1.1

Published

A CLI to manage and sync AI agent skills standard for Cursor, Claude, Copilot, Windsurf, and more.

Readme

Agent Skills Standard CLI

NPM Version License: MIT

Sync 237 AI coding standards to any project in one command. Works with Cursor, Claude Code, GitHub Copilot, Gemini, Windsurf, Trae, Kiro, and Roo.

npx agent-skills-standard@latest init   # detect your stack
npx agent-skills-standard@latest sync   # install skills

What It Does

The CLI takes engineering standards from the Agent Skills Standard registry and installs them into your AI agent's native format:

npx agent-skills-standard sync

  - Updated .cursor/skills/    (Cursor)
  - Updated .claude/skills/    (Claude Code)
  - Updated .github/skills/    (Copilot)
  - Generated _INDEX.md for 8 categories.
  - AGENTS.md router index updated.

The result: your AI agent reads AGENTS.md, follows the router to the right category, and loads only the skills that match what you're editing.


Commands

| Command | What it does | | :--------- | :--------------------------------------------------------------------------------------------- | | init | Detects your tech stack (Flutter, React, Go, etc.) and creates a .skillsrc config | | sync | Fetches skills from the registry, writes to agent folders, generates _INDEX.md + AGENTS.md | | validate | Checks your custom skills against format and token standards | | feedback | Submits improvement suggestions to the registry | | upgrade | Updates the CLI to the latest version |


Configuration

The .skillsrc file controls everything:

registry: https://github.com/HoangNguyen0403/agent-skills-standard
agents: [cursor, copilot, claude]
skills:
  react:
    ref: react-v1.3.1
  golang:
    ref: golang-v1.3.1
    exclude: ['golang-tooling'] # skip skills you don't need
  common:
    ref: common-v2.0.1
    custom_overrides: ['common-tdd'] # protect your local edits

What Gets Generated

After sync, your project contains:

project/
  AGENTS.md                           # Router table (~20 lines)
  .cursor/skills/
    golang/_INDEX.md                  # Trigger table for Go skills
    golang/golang-language/SKILL.md   # The actual skill
    golang/golang-testing/SKILL.md
    react/_INDEX.md                   # Trigger table for React skills
    react/react-hooks/SKILL.md
    ...

AGENTS.md maps file extensions to category indexes. _INDEX.md has two sections: File Match (auto-check against your file) and Keyword Match (activates when you mention a concept). SKILL.md is the skill itself — loaded on demand, averaging ~500 tokens.


Privacy & Security

  • Text only — the CLI downloads Markdown and JSON files, never binaries or scripts
  • No telemetry — zero data collection, no background processes
  • Transparent — fetches from the public registry, nothing hidden
  • Override protectioncustom_overrides prevents the CLI from touching your local modifications

Links

📜 Benchmark History

| Version | Date | Skills | Avg Tokens | Savings (%) | Report | | --- | --- | --- | --- | --- | --- | | v2.1.0 | 2026-04-04 | 237 | 526 | 86% | Report | | v2.0.1 | 2026-03-30 | 238 | 527 | 86% | Report | | v2.0.0 | 2026-03-25 | 235 | 523 | 86% | Report | | v1.10.3 | 2026-03-21 | 234 | 505 | 86% | Report | | v1.10.1 | 2026-03-16 | 229 | 428 | 88% | Report | | v1.10.0 | 2026-03-16 | 229 | 434 | 88% | Report | | v1.9.3 | 2026-03-15 | 229 | 460 | 87% | Report | | v1.9.2 | 2026-03-07 | 228 | 458 | 87% | Report | | v1.9.1 | 2026-03-07 | 228 | 458 | 87% | Report | | v1.9.0 | 2026-03-05 | 228 | 457 | 88% | Report | | v1.8.0 | 2026-03-02 | 228 | 443 | 88% | Report | | v1.7.3 | 2026-02-25 | 222 | 418 | 89% | Report | | v1.7.2 | 2026-02-25 | 220 | 413 | 89% | Report |