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

build-skill

v1.2.0

Published

Scaffold AI agent skills quickly with the Build Skill CLI.

Readme

Build Skill

Flash Brew Digital OSS MIT License

Scaffold AI agent skills quickly with the Build Skill CLI. Creates a fully-configured skills repository following the Agent Skills Specification.

What are Agent Skills?

Agent Skills are folders of instructions, scripts, and resources that agents can discover and use to do things more accurately and efficiently. They work across any AI agent that supports the open Agent Skills standard.

Quick Start

npx build-skill

This launches an interactive prompt to configure your skill.

Usage

Interactive Mode

npx build-skill

You'll be prompted for:

  • Brand/Organization name - Your company or project name (e.g., acme-corp)
  • Skill name - Name of your first skill (e.g., data-processor)
  • Skill description - What the skill does and when to use it

Quiet Mode (CI/Scripts)

npx build-skill --name my-skill --description "Helps with X tasks" --quiet

CLI Options

| Option | Alias | Description | Default | | ------ | ----- | ----------- | ------- | | --brand <brand> | -b | Brand/organization name | Same as --name | | --name <name> | -n | Skill name | Required in quiet mode | | --description <desc> | -d | Skill description | Required in quiet mode | | --license <license> | -l | License for the skill | MIT | | --website <url> | -w | Website/docs URL | https://example.com | | --repository <repo> | -r | GitHub repository (owner/repo) | <brand>/agent-skills | | --category <category> | -c | Skill category | general | | --keywords <keywords> | -k | Comma-separated keywords | ai, agent, skill | | --output <dir> | -o | Output directory | . | | --quiet | -q | Suppress prompts and visual output | false | | --force | -f | Overwrite existing directory | false | | --version | -V | Show version number | | | --help | -h | Show help | |

Examples

# Interactive mode
npx build-skill

# Specify brand and skill name
npx build-skill --brand acme-corp --name data-processor --description "Processes data files"

# Full configuration
npx build-skill \
  --brand acme-corp \
  --name data-processor \
  --description "Processes CSV and JSON data files" \
  --license Apache-2.0 \
  --website https://acme.example.com/docs \
  --repository acme-corp/agent-skills \
  --category productivity \
  --keywords "data, csv, json, processing" \
  --quiet

# Overwrite existing directory
npx build-skill --name my-skill --description "My skill" --force --quiet

Generated Structure

<brand>-skills/
├── .claude-plugin/
│   └── marketplace.json
├── .github/
│   └── workflows/
│       └── process-skills.yml
├── scripts/
│   ├── add-skill.js
│   └── sync-skills.js
├── skills/
│   └── <skill-name>/
│       ├── .claude-plugin/
│       │   └── plugin.json
│       └── SKILL.md
└── README.md

Included Automation

GitHub Actions Workflow

The generated repository includes a process-skills.yml workflow that:

  • On Pull Requests: Validates all skills using the Validate Agent Skill action
  • On Push to Main: Validates skills and syncs the README, marketplace.json, and each skill's plugin.json

Add Skill Script

The scripts/add-skill.js utility creates new skills:

node scripts/add-skill.js <skill-name> "<description>"

Example:

node scripts/add-skill.js data-processor "Processes CSV and JSON data files"

This script:

  • Creates the skill directory structure in skills/
  • Generates SKILL.md with frontmatter
  • Generates .claude-plugin/plugin.json
  • Automatically runs sync-skills.js to update README and marketplace.json

Sync Script

The scripts/sync-skills.js utility keeps your repository in sync:

node scripts/sync-skills.js

This script:

  • Scans the skills/ directory for all skills
  • Updates the "Available Skills" table in README.md
  • Updates the plugins array in .claude-plugin/marketplace.json

Run it after modifying skills to keep everything up to date.

Development

# Install dependencies
pnpm install

# Build
pnpm build

# Run tests
pnpm test

# Lint
pnpm check

# Fix lint issues
pnpm fix

# Type check
pnpm type-check

Resources

Contributing

Contributions are welcome! Please read our Contributing Guide for more information.

License

MIT License

Author

Ben Sabic at Flash Brew Digital