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

@pramodyadav027/skills-manifest-manager

v1.0.1

Published

Manifest-driven installer for skills.sh skills

Readme

skills

Manifest-driven, TypeScript package manager for skills.sh skills.

Why this exists

  • Keep team skill setup reproducible from one manifest across machines
  • Install to home directory by default, or current repo when needed
  • Wrap existing skills.sh CLI instead of rebuilding a custom registry/downloader
  • Add/remove/sync skills from the command line
  • Full TypeScript implementation with tests

NPM Usage

After publishing or local install/link, run the CLI normally:

skills-pm install
skills-pm add owner/repo --ref main
skills-pm remove owner/repo

For local development before publishing:

npm install
npm run build
npm link
skills-pm list

Requirements

  • Node.js 18+
  • npm/pnpm/yarn

Quick Start

Install dependencies

npm install
npm run build

Add skills

skills-pm add vercel-labs/agent-skills --ref main

Install skills

skills-pm install

Will prompt for target (home, local, or custom path).

Use flags to skip prompts

# Install to home directory
skills-pm install --home

# Install to current repo
skills-pm install --local

# CI mode (fail fast on errors, no prompts)
skills-pm install --ci

Programmatic API

If you publish this package to npm, you can install skills from a skills.yaml or skills.yml file in code:

const { installFromManifest } = require('@pramodyadav027/skills-manifest-manager');

await installFromManifest({
  cwd: process.cwd(),
  manifestPath: './skills.yaml',
  targetPath: process.cwd(),
});

That API reads and validates skills.yaml or skills.yml, installs enabled skills, and writes skills.lock.yaml.

Manifest Format

Edit skills.yaml or skills.yml:

version: 1

# Default target: home or local
target: home

skills:
  # Enable and install
  - id: vercel-labs/agent-skills
    ref: main
    enabled: true
    notes: "Core agent patterns"

  # Disable (won't install)
  - id: anthropics/skills
    ref: main
    enabled: false

Commands

| Command | Purpose | |---------|---------| | install | Install all enabled skills (default) | | add <id> | Add a skill to manifest | | remove <id> | Remove a skill from manifest | | list | List enabled skills | | validate | Check manifest syntax | | sync | Sync installed with manifest | | help | Show all commands |

Examples

# Validate manifest
skills-pm validate

# List enabled skills
skills-pm list

# Add a new skill
skills-pm add owner/repo --ref v1.0.0

# Remove a skill
skills-pm remove owner/repo

# Install with dry-run preview
skills-pm install --dry-run --local

# Sync (remove skills no longer in manifest)
skills-pm sync

# CI/CD friendly
skills-pm install --ci --home

Flags

  • --manifest <path> — Custom manifest path
  • --target <path> — Install to explicit directory
  • --local — Install in current repo
  • --home — Install in home directory
  • --dry-run — Preview without executing
  • --ci — CI mode (no prompts, fail fast)
  • --ref <ref> — Git ref for add command (default: main)

Development

Build

npm run build

Run in dev mode (TypeScript directly)

npm run dev -- list
npm run dev -- add owner/repo

Test

npm test
npm run test:watch

Clean

npm run clean

Team Workflow

See TEAM_WORKFLOW.md for detailed guidance on using this tool across your team.

File Structure

skills/
├── src/
│   ├── index.ts       # Public library API
│   ├── cli.ts         # Command parsing and orchestration
│   ├── manifest.ts    # YAML parsing and validation
│   └── installer.ts   # skills.sh wrapper with error handling
├── bin/
│   └── skills-pm.ts   # CLI entrypoint
├── tests/
│   └── manifest.test.ts   # Test suite
├── skills.yaml        # Example manifest
├── skills.lock.yaml   # Generated lockfile (reproducibility)
└── package.json       # Dependencies and build scripts

Next Steps

  1. Commit skills.yaml and skills.lock.yaml to git
  2. Share manifest file with team
  3. See TEAM_WORKFLOW.md for organization patterns

License

See LICENSE