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

oh-my-sdd

v1.0.0

Published

Global Claude Code skill that enforces Spec-Driven Development (SDD): consult the knowledge base, write specs, then implement.

Readme

oh-my-sdd

sdd-header

A set of global Claude Code skills that rigorously enforce Spec-Driven Development (SDD): before implementing any task, Claude analyzes the project, generates constitution.mdspec.mdplan.mdtasks.md, with mandatory human validation before implementation is allowed to start.

📖 Documentation: English · Português

Installation

npx oh-my-sdd install

This installs the 6 skills globally in ~/.claude/skills/, available in any project opened in Claude Code — installation does not depend on the directory the command is run from.

Architecture

An orchestrator skill (oh-my-sdd) activates, in sequence, 5 specialized skills — one per SDD phase:

| Skill | Responsibility | |---|---| | oh-my-sdd | Orchestrates the flow, identifies the input (free text or Jira) and activates the others in order | | oh-my-sdd-constitution | Founds the constitution on what the project already documents and practices: scans CLAUDE.md, AGENTS.md, .cursor/rules/, CONTRIBUTING.md, lint configs and CI workflows first (every rule traced to its source, conflicts asked — never silently resolved), then falls back to code analysis, asking the user only what remains | | oh-my-sdd-specify | Generates spec.md in EARS/GEARS — human checkpoint #1 | | oh-my-sdd-plan | Translates the validated spec into technical decisions (plan.md) | | oh-my-sdd-tasks | Breaks the plan into atomic tasks (tasks.md) — human checkpoint #2 | | oh-my-sdd-implement | Implements task by task, only after both checkpoints are confirmed |

Each installed skill is self-contained: it gets its own copy of knowledge/, the SDD knowledge base (maturity levels, EARS/GEARS syntax, artifact hierarchy, practical examples) that underpins how each phase generates its document.

Usage

Once installed, the flow is automatically discovered by Claude Code whenever a task should be specified before being implemented. It can also be invoked directly:

/oh-my-sdd "add a logout endpoint that invalidates the refresh token"
/oh-my-sdd PROJ-123
/oh-my-sdd https://company.atlassian.net/browse/PROJ-123

Other commands

npx oh-my-sdd status      # shows which of the 6 skills are installed and whether any file was manually modified
npx oh-my-sdd uninstall   # removes the 6 skills from ~/.claude/skills/

Adaptive scale

Not every task deserves the full pipeline. Before running any sub-skill, the orchestrator classifies the task and routes it:

  • QUICK — inline mini-spec + single confirmation, straight to implementation (typos, isolated bug fixes)
  • SMALL — condensed spec + tasks with embedded decisions, both human checkpoints kept
  • MEDIUM / LARGE — full pipeline, unchanged

Classification + reason print in one line and are recorded in .oh-my-sdd/runtime/scale.json (gitignored). The model may only reclassify upward; only you can force the scale down. See Quick Start for the full criteria table.

Multi-tool export

oh-my-sdd is Claude Code-first, but the SDD flow itself is tool-agnostic. Export the distilled rules so other AI tools follow the same pipeline in the same repo:

npx oh-my-sdd export cursor|codex|gemini|windsurf|zed

| Tool | Surface | Strategy | |---|---|---| | Cursor | .cursor/rules/oh-my-sdd.mdc | own file | | Codex | AGENTS.md | marked section | | Gemini CLI | GEMINI.md | marked section | | Windsurf | .windsurf/rules/oh-my-sdd.md | own file | | Zed | .zed/rules/oh-my-sdd.md | own file |

Marked-section tools get idempotent merge between <!-- oh-my-sdd:start|end --> markers — third-party content is never touched; re-runs update only our section. Unsupported tool: list + exit 1.

Feature report

Portfolio view of every SDD feature in the current project — slug, current phase, task progress and pending acceptance criteria:

npx oh-my-sdd report          # human table
npx oh-my-sdd report --json   # stable machine schema ([{slug, phase, tasks_done, tasks_total, pending_criteria}])

Phase derivation: active session > task checkboxes > artifact presence (specifyplantasksimplementdone). Read-only; the oh-my-sdd repo itself is the first user (dogfooding).

Session hooks (optional)

Never lose the thread of an SDD run between sessions. Install lifecycle hooks in the current project:

npx oh-my-sdd hook install          # or: npx oh-my-sdd install --with-hooks
npx oh-my-sdd hook uninstall        # removes only oh-my-sdd entries

When a session starts with an implementation in progress, you get a one-line resume hint (feature X, N/M tasks — resume with /oh-my-sdd-implement <slug>); when a response ends with an active workflow, a short next-step reminder. Fully informative: hooks are fail-silent (exit 0, never block), read only .oh-my-sdd/runtime/, and merge into .claude/settings.json without touching third-party hooks.

Project layout

Everything oh-my-sdd writes lives under .oh-my-sdd/ in the target project:

| Path | Versioned | Content | |---|---|---| | specs/<slug>/ | yes | spec.md, plan.md, tasks.md — the SDD artifacts | | config/ | yes | sensors.json, future behavior flags | | runtime/ (gitignored) | no | execution state: sessions/, sensor evidence, scale.json |

Execution state is never committed. The orchestrator ensures .oh-my-sdd/runtime/ is in .gitignore on first use; during implementation, a sessions/<slug>.json tracks fine-grained progress (current task, timestamps) so an interrupted run resumes where it stopped — tasks.md checkboxes remain the formal source of truth, and the session is archived when the feature closes.

Sensors & evidence

Implementation only counts as done when real commands prove it. Sensors are per-stack auto-detected checks (tests, typecheck, lint — Node, Python, Go, Rust, Java) stored in .oh-my-sdd/config/sensors.json:

npx oh-my-sdd sensor init --yes        # detect the stack, write the config (asks first; --yes to skip)
npx oh-my-sdd sensor run <slug>        # run sensors, write evidence, block on required failure
npx oh-my-sdd sensor status <slug>     # evidence table with fingerprint validity

Before its final report, oh-my-sdd-implement runs the sensors and blocks on any required failure. Acceptance criteria are reported as met only with evidence (passing sensor or manual check note); otherwise they stay explicitly pending verification. Evidence lives in .oh-my-sdd/runtime/ (gitignored) and expires when tracked code changes. See the CLI reference for details.

Knowledge base

The knowledge/ folder documents the SDD fundamentals used by every skill: maturity levels (spec-first, spec-anchored, spec-as-source), best practices for writing specs and constitutions, EARS/GEARS syntax, and complete practical examples.

License

MIT