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

sails-agent-skills

v1.0.6

Published

CLI tool to discover, select, and install agent skills based on project requirements

Downloads

35

Readme

Sails Agent Skills

A CLI tool to help you discover, select, and install agent skills tailored to your project's requirements. Skills extend AI coding assistants (Copilot, Claude, Cursor) with domain-specific knowledge, company policies, and best practices.

Features

  • Interactive questionnaire to identify your project's needs
  • Smart skill recommendations based on tech stack, compliance requirements, and team preferences
  • Seamless installation of skills into .agents/skills/ directory
  • Support for both public and private skill packages
  • Version locking with skills-lock.json
  • Easy updates and management

Installation

npm install -g sails-agent-skills

Usage

Navigate to your project root and run:

sails-agent-skills

The CLI will:

  1. Ask questions about your project (tech stack, compliance needs, etc.)
  2. Recommend appropriate skills
  3. Install selected skills into .agents/skills/
  4. Create a skills-lock.json for reproducible setups

Commands

  • sails-agent-skills - Interactive setup wizard
  • sails-agent-skills --list - Show available skills in the catalog
  • sails-agent-skills --customize - Customize installed skills
  • sails-agent-skills --update - Check for and install updates
  • sails-agent-skills --remove - Remove installed skills

How It Works

  1. Answer Questions: The CLI asks about your project type, tech stack, compliance requirements (SOC2, GDPR, etc.), and team preferences.
  2. Get Recommendations: Based on your answers, the CLI suggests relevant skills from the catalog.
  3. Install Skills: Selected skills are installed via npm into .agents/skills/ where your AI agent will automatically discover them.
  4. AI Assistant Enhancement: Your AI coding assistant now has specialized knowledge about your project's policies and standards.

Example Skills

  • Security Standards: OWASP guidelines, secure coding practices, vulnerability scanning
  • Coding Guidelines: Team conventions, code review standards, architecture patterns
  • Compliance Workflows: Audit trails, approval processes, documentation requirements
  • Testing Standards: Coverage requirements, E2E testing patterns, test-driven development

Publishing Skills

Skills are published as npm packages with a skills/ subdirectory containing one or more SKILL.md files. See the Skills Documentation for the SKILL.md format.

Multi-skill packages should be scoped (e.g., @sails-agent-skills/security-standards) and include:

package/
├── package.json
├── skills/
│   ├── skill-one/
│   │   └── SKILL.md
│   ├── skill-two/
│   │   └── SKILL.md
│   └── ...
└── README.md

Development

# Clone and setup
git clone <repository>
cd sails-agent-skills
npm install

# Build
npm run build

# Run locally
npm link
sails-agent-skills

# Watch mode
npm run dev

Project Structure

sails-agent-skills/
├── src/
│   ├── cli.ts              # Main CLI entry point
│   ├── questions/          # Interactive questionnaire definitions
│   ├── skills/             # Skill catalog and metadata
│   ├── installer/          # Installation logic
│   └── utils/              # Helper functions
├── skills/                 # Bundled skill packages (for development)
│   ├── coding-standards/
│   ├── security-standards/
│   └── ...
├── dist/                   # Compiled JavaScript
├── package.json
├── tsconfig.json
└── README.md

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

License

MIT