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

@skill-kit/init

v1.0.0

Published

Skill scaffolding generator - create standardized Skill projects with interactive prompts

Readme

@skill-kit/init

Skill scaffolding generator - create standardized Skill projects with interactive prompts

Installation

npm install -g @skill-kit/init
# or
pnpm add -g @skill-kit/init

Usage

Interactive Mode (Default)

skill-init my-awesome-skill

This will launch an interactive prompt:

  Creating new Skill

? Skill name: My Awesome Skill
? Short description: Helps users create React components quickly
? Trigger phrases (comma separated): create component, add component
? Choose a template:
  > minimal  - Only SKILL.md
    standard - SKILL.md + references/ (recommended)
    complete - Full structure with examples/, scripts/
? Target platform:
    Claude Code
  > Codex CLI
    Cursor
    All (Universal)

  Skill created successfully!

my-awesome-skill/
├── SKILL.md
├── references/
│   └── patterns.md
└── README.md

Non-Interactive Mode

skill-init my-skill \
  --name "My Skill" \
  --desc "Does something useful" \
  --triggers "do X, help with X" \
  --template standard \
  --platform claude-code \
  --no-interactive

CLI Options

Usage: skill-init [options] <directory>

Create a new Skill project with interactive prompts

Arguments:
  directory                  Target directory for the skill

Options:
  -V, --version              output the version number
  -n, --name <name>          Skill name
  -d, --desc <description>   Skill description
  -t, --triggers <triggers>  Trigger phrases (comma separated)
  --template <type>          Template type: minimal, standard, complete
  --platform <type>          Target platform: claude-code, codex, cursor, all
  --no-interactive           Skip interactive prompts
  -f, --force                Overwrite existing directory
  --author <name>            Author name
  -h, --help                 display help for command

Templates

minimal

skill-name/
└── SKILL.md

Best for simple, single-file skills.

standard (Recommended)

skill-name/
├── SKILL.md
├── references/
│   └── patterns.md
└── README.md

Best for most skills with supporting documentation.

complete

skill-name/
├── SKILL.md
├── README.md
├── references/
│   ├── patterns.md
│   └── advanced.md
├── examples/
│   └── example.sh
└── scripts/
    └── validate.sh

Best for complex skills with examples and validation scripts.

Programmatic API

import { initSkill } from '@skill-kit/init';

const result = await initSkill({
  directory: './my-skill',
  name: 'My Skill',
  description: 'A useful skill',
  triggers: ['do something'],
  template: 'standard',
  platform: 'all',
  interactive: false,
});

console.log('Created:', result.files);

API Reference

initSkill(options, callbacks?)

Creates a new skill project.

Options:

  • directory (string, required) - Target directory path
  • name (string) - Skill name
  • description (string) - Skill description
  • triggers (string[]) - Trigger phrases
  • template ('minimal' | 'standard' | 'complete') - Template type
  • platform ('claude-code' | 'codex' | 'cursor' | 'all') - Target platform
  • interactive (boolean) - Enable interactive prompts (default: true)
  • force (boolean) - Overwrite existing directory
  • author (string) - Author name

Callbacks:

  • onStart() - Called when generation starts
  • onMetadataCollected(metadata) - Called after collecting metadata
  • onDirectoryCreated(dirs) - Called after creating directories
  • onFilesGenerated(files) - Called after generating files
  • onComplete(result) - Called on successful completion
  • onError(error) - Called on error

Returns: Promise<GeneratedResult>

interface GeneratedResult {
  directory: string;
  files: string[];
  metadata: SkillMetadata;
}

License

MIT