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

old-sdd

v0.4.0

Published

Spec-driven development skills for AI coding agents (Copilot CLI, Codex CLI, Claude Code)

Readme

old-sdd

Simple spec-driven development for AI coding agents.

old-sdd is a set of markdown skills that teach your AI agent to explore requirements thoroughly, write specs incrementally, plan with parallelism, implement ambitiously, and validate honestly. The agent has opinions and isn't afraid to disagree with you.

Skills

| Skill | When to Use | |-------|-------------| | /osd-build | New feature, major change, or bug fix — full pipeline | | /osd-spec | Exploring ideas AND writing a spec interactively | | /osd-plan | Breaking a spec into parallelizable task waves | | /osd-implement | Executing a written plan with subagents | | /osd-validate | Verifying implementation before shipping |

Installation

npx old-sdd install

Auto-detects which CLIs you have (Copilot, Codex, Claude) and compiles self-contained skills for each.

npx old-sdd install copilot   # specific platform only
npx old-sdd uninstall          # remove all osd-* skills
npx old-sdd list               # show what's installed

From Source

git clone https://github.com/shushakov-usa/old-sdd ~/.old-sdd
cd ~/.old-sdd && node cli.js install

After installation, restart your agent CLI. The skills will appear in the command list.

Usage

Build a Feature

/osd-build add user authentication

The agent will:

  1. Ask you questions to understand what you want (batching independent questions for speed)
  2. Research options and present findings with opinions
  3. Write the spec incrementally as decisions are made
  4. Create a task plan with parallelizable waves
  5. Implement using subagents where possible
  6. Validate with tests, lint, type checks, and UI verification

Individual Phases

You can invoke any phase directly:

  • /osd-spec — Explore ideas and write a spec interactively
  • /osd-plan — Plan from an existing spec
  • /osd-implement — Execute an existing plan
  • /osd-validate — Validate recent changes

Philosophy

The agent is honest, not sycophantic. It will:

  • Challenge your ideas when it sees a better approach
  • Push back on vague requirements
  • Surface problems honestly instead of working around them
  • Have genuine opinions about technical decisions

It won't be contrarian for the sake of it, and if you insist after hearing its counter-argument, it'll do it your way.

Artifacts

| What | Where | Committed? | |------|-------|-----------| | Specs | docs/agents/specs/YYYY-MM-DD-<topic>.md | Yes | | Plans | docs/agents/plans/YYYY-MM-DD-<topic>.md | Yes | | Bug investigations | docs/agents/investigations/<topic>.md | Yes (complex bugs) | | Tests | Your project's test directory | Yes |

Uses docs/superpowers/ instead if that directory already exists in the project.

Architecture

cli.js           ← Node.js CLI (npx old-sdd install/uninstall/list)
skills/          ← 5 self-contained SKILL.md files

The installer handles platform-specific blocks (<!-- platform: codex -->) so each installed SKILL.md is fully self-contained with no external dependencies.

Platforms

  • GitHub Copilot CLI — Full support
  • OpenAI Codex CLI — Full support (adapts to suggest mode)
  • Claude Code CLI — Full support

License

MIT