skills/npmpublish/SKILL.md
Publish npm packages with sensible defaults. Automatically sets private access and bumps patch version (0.0.1). Use when publishing packages to npm, especially for internal/private packages.
npx skillsauth add hasna/skills npmpublishInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Publish npm packages to the npm registry with sensible defaults:
publishConfig.access: restricted# Publish with defaults (private, patch bump)
npmpublish
# Specify bump type
npmpublish --bump minor # 0.1.0
npmpublish --bump major # 1.0.0
npmpublish --bump patch # 0.0.1 (default)
# Publish as public (use carefully!)
npmpublish --public
# Dry run (see what would happen)
npmpublish --dry-run
# Publish from a different directory
npmpublish --dir /path/to/package
| Option | Description | Default |
|--------|-------------|---------|
| -b, --bump <type> | Version bump: patch, minor, major | patch |
| --public | Publish as public package | false (private) |
| --dry-run | Preview without publishing | false |
| -d, --dir <path> | Package directory | current dir |
NPM_TOKEN in ~/.secrets for authenticationpackage.json in target directorypackage.jsonpublishConfig.access: restricted (unless --public)package.jsonbun publish# Standard publish for internal package
npmpublish
# Release new feature version
npmpublish --bump minor
# Breaking change release
npmpublish --bump major
# Check what would be published
npmpublish --dry-run
development
Fetch official brand assets from a website or brand name, then return logos, palette, typography, source metadata, and a clean asset manifest. Use when a user asks to find, extract, download, package, or normalize a brand's logo and visual identity assets.
tools
Generate hosted voiceover variants and short jingles
tools
Generate premium video highlight packages with clip plans, captions, thumbnails, chapter markers, social copy, edit decisions, and manifest metadata.
development
Generate premium API, unit, and browser test suite packages with runnable tests and coverage notes.