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

v1.3.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

The engine behind High-Density AI coding. Command your AI assistants with professional standards.

The agent-skills-standard CLI is the official command-line tool to manage, sync, and version-control engineering standards across all major AI agents (Cursor, Claude Code, GitHub Copilot, Gemini, Roo Code, OpenCode, and more).


💡 What does this tool do?

If the Agent Skills Standard is the "instruction manual" for your AI, this CLI is the delivery truck that brings those instructions to your project.

Why you need this CLI

  • For Developers: No more copy-pasting .cursorrules or manual file management. One command keeps your AI updated.
  • For Non-IT/Tech Leads: Quickly set up a new project with the same professional standards used by senior engineers.
  • For Teams: Ensure every developer’s AI tool (Cursor, Claude, Copilot) behaves the same way across the entire codebase.

⚡ The Problem: "The Context Wall"

Modern AI coding agents are powerful, but they have major flaws:

  1. Memory Drain: Giant rule files consume 30% - 50% of the AI's memory, making it less effective for actual coding.
  2. Version Chaos: Team members often have different "best practices," leading to inconsistent code.
  3. Wordy Prose: Human-style instructions are token-heavy and often ignored by AI during complex logical tasks.

Agent Skills Standard solves this by treating prompt instructions as versioned dependencies, similar to how you manage software libraries.


🚀 Installation

You can run the tool instantly without installing, or install it globally for convenience:

# Use instantly (Recommended)
npx agent-skills-standard@latest sync

# Or install globally
npm install -g agent-skills-standard

# Use the short alias
ags sync

🛠 Basic Commands

1. Setup Your Project

Run this once to detect your project type and choose which "skills" you want your AI to have.

npx agent-skills-standard@latest init

2. Boost Your AI

Run this to fetch the latest high-density instructions and install them into your hidden agent folders (like .cursor/skills/ or .github/skills/).

npx agent-skills-standard@latest sync

⚙️ Configuration (.skillsrc)

The .skillsrc file allows you to customize how skills are synced to your project.

registry: https://github.com/HoangNguyen0403/agent-skills-standard
agents: [cursor, copilot]
skills:
  flutter:
    ref: flutter-v1.1.0
    # 🚫 Exclude specific sub-skills from being synced
    exclude: ['getx-navigation']
    # 🔒 Protect local modifications from being overwritten
    custom_overrides: ['bloc-state-management']

Key Options

  • exclude: A list of skill IDs to skip during synchronization. Useful if you want the main framework guidelines but use a different library for a specific sub-task (e.g., excluding auto-route if you use go_router).
  • custom_overrides: A list of skill IDs that the CLI should never overwrite. Use this when you have modified a standard skill locally to fit your project's unique needs. The CLI will detect these and preserve your local version.
  • ref: Specify a specific version or tag of the skills from the registry.

✨ Key Features

  • 🎯 Efficiency First: Uses a "Search-on-Demand" pattern that only loads information when the AI needs it, saving its "brain power" for your code.
  • 🚀 High-Density Instructions: Optimized syntax that is 40% more compact than standard English.
  • 🛡️ Universal Support: Works out-of-the-box with Cursor, Claude, GitHub Copilot, and more.
  • 🔒 Secure Protection: Mark specific files as "Locked" (overrides) so the CLI never changes your custom tweaks.
  • 🧪 Production-Grade Reliability: Guarded by a 100% statement coverage test suite and strict CI enforcement.

🌍 Supported Stacks

The CLI connects to the Official Skills Registry, which currently supports:

  • Flutter: Clean Architecture, BLoC, AutoRoute, Performance, Security.
  • Dart: Idiomatic Patterns, Advanced Tooling.
  • TypeScript/JavaScript: Best practices, Security, Tooling.
  • React: Hooks, Patterns, Performance.
  • NestJS: Architecture, Microservices, Security.
  • Next.js: App Router, RSC, FSD Architecture.
  • Golang: (Coming Soon)

🔗 Links