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

spec-driven-skills

v1.0.5

Published

Spec Driven Development agent skills installer for Claude and OpenAI-compatible agents.

Readme

spec-driven-skills

Orchestrated skills for an advanced AI-assisted Spec Driven Development flow.

This package can install all SDD skills into the paths used by Claude and by OpenAI/Codex-compatible agents.

Quick installation

From the root of the project where you want to use the skills:

npx spec-driven-skills

By default, it installs the full package into:

./.claude/skills/
./.agents/skills/

Available commands

Default usage

Install into the current project for Claude and OpenAI/Codex:

npx spec-driven-skills

Equivalent to:

npx spec-driven-skills --scope project --provider all

Choose scope

Install into the current project:

npx spec-driven-skills --scope project

Install globally for the user:

npx spec-driven-skills --scope global

Choose provider

Install only for Claude:

npx spec-driven-skills --provider claude

Install only for OpenAI/Codex:

npx spec-driven-skills --provider openai

Install for both providers:

npx spec-driven-skills --provider all

Combine flags

Flags can be combined in the same command.

Install globally only for Claude:

npx spec-driven-skills --scope global --provider claude

Install globally only for OpenAI/Codex:

npx spec-driven-skills --scope global --provider openai

Install into the current project only for Claude:

npx spec-driven-skills --scope project --provider claude

The = syntax is also supported for any flag:

npx spec-driven-skills --scope=global --provider=claude

Choose another project

Install into a specific project:

npx spec-driven-skills --cwd /path/to/project

Install into a specific project only for OpenAI/Codex:

npx spec-driven-skills --cwd /path/to/project --provider openai

Simulate installation

See what the installer would do without writing files:

npx spec-driven-skills --dry-run

Simulate a global installation only for Claude:

npx spec-driven-skills --scope global --provider claude --dry-run

Installation paths

| Scope | Claude | OpenAI/Codex | |---|---|---| | Project | ./.claude/skills/ | ./.agents/skills/ | | Global | ~/.claude/skills/ | ~/.agents/skills/ |

The installer copies all folders from skills/ while preserving their names.

Enable the SDD flow with AGENTS.md

The repository includes an AGENTS.md file with additional instructions to enforce use of the SDD flow.

That file tells the agent that, before responding to product, code, test, documentation, security, permissions, API or database requests, it must:

  1. Review the installed local skills.
  2. Start with sdd-orchestrator-skill.
  3. Follow the SDD gates before implementing.
  4. Use the included templates/, schemas/, routing/ and examples/.

To enable these rules in a project, copy or keep AGENTS.md at the root of the repository where you will work with the agent:

./AGENTS.md

In OpenAI/Codex installations, the file references skills in:

./.agents/skills/

In Claude installations, the skills are copied into:

./.claude/skills/

If you want Claude to follow exactly the same rules, you can adapt those references in your project instruction file to point to .claude/skills/.

Conflicts and backups

If an SDD skill with the same name already exists in the destination, the installer:

  1. Creates a timestamped backup.
  2. Replaces only that skill.
  3. Preserves unrelated files inside .claude or .agents.

Backups are stored in:

.claude/sdd-skills-backups/<timestamp>/
.agents/sdd-skills-backups/<timestamp>/

An installation manifest is also written:

.claude/sdd-skills-manifest.json
.agents/sdd-skills-manifest.json