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

openspec-extension

v1.0.1

Published

Installs openspec extension skills (clarification, validation, extend-propose, extend-specs, openspec-extend, domain-skill) into a workspace.

Readme

openspec-extension

An npm package that installs the following Copilot agent skills into any repository:

| Skill | Purpose | |---|---| | clarification | Clarification gate invoked before and after each artifact is created | | domain-skill | Placeholder folder for domain-specific skills added via openspec-extend | | extend-propose | Extends proposal.md content to align with IEEE Std 830-1998 SRS structure | | extend-specs | Extends spec file content to align with IEEE Std 830-1998 SRS structure | | openspec-extend | Wires clarification, validation, and domain skills into the openspec workflow | | validation | Validates specs and tasks artifacts before implementation |


User installation

Recommended — no leftover files

npx openspec-extension

npx downloads and runs the package without leaving anything behind. Skills are copied into .github/skills/ and a .openspec-version marker file is written to the current directory.

Alternative — npm install

npm install openspec-extension

Skills are copied automatically via a postinstall hook. However, this leaves node_modules/, package.json, and package-lock.json in your directory. Add node_modules/ to your .gitignore and remove the generated package*.json files if you don't want them committed.

To overwrite an existing installation:

npx openspec-extension --force

To check whether a newer version is available:

npx openspec-extension check

Publishing updates (maintainer workflow)

1. Edit the source skills

Skills are authored in .github/skills/ in this repository. Edit the SKILL.md files there — that is the source of truth.

2. Sync changes into the package assets

After editing, copy the updated skill files into the skills/ folder that is bundled with the npm package:

$skills = @("clarification","domain-skill","extend-propose","extend-specs","openspec-extend","validation")
foreach ($s in $skills) {
    Copy-Item -Recurse -Force ".github\skills\$s" "skills\$s"
}

3. Bump the version

Follow semantic versioning:

| Change type | Version bump | Example | |---|---|---| | Bug fix or wording correction in a skill | patch | 1.0.01.0.1 | | New behaviour added to an existing skill | minor | 1.0.01.1.0 | | Breaking change to skill interface or removal | major | 1.0.02.0.0 |

npm version patch   # or minor / major

This updates package.json and creates a git tag automatically.

4. Publish

npm publish

Users running npx openspec-extension check will see the new version and can upgrade with npx openspec-extension init --force.


Local testing before publishing

node bin/cli.js
node bin/cli.js --force
node bin/cli.js check