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-drum

v0.1.6

Published

Spec-driven development for Claude Code. Install skills for /spec-steer, /spec-plan, /spec-execute, /spec-verify, /spec-quick, and /spec-list.

Readme

spec-drum

Spec-driven development for Claude Code. Turns tickets into structured specs, executes them task-by-task with atomic commits, and verifies the result. Deliberately lightweight — no external dependencies, no enterprise ceremony — built around the latest Claude Code features like skills, forked contexts, and /simplify.

Why "spec-drum"?

The name is a triple-layered pun that nobody asked for:

  1. The ZX Spectrum — The legendary 48K home computer where you had to wait 5 minutes for a tape to load. AI-driven spec execution is about as far from that machine as you can get, which is exactly the point.
  2. Beating the drum — spec-drum beats the drum for better specs. Someone has to.
  3. The tapasDátiles con Bacon: a date wrapped in bacon, because Speck is German for bacon. Specs wrapped in automation. It's a stretch, but so is every good tapas menu.

Requires Claude Code >= 2.1.63 (for /batch and /simplify support).

Install

npx spec-drum

You'll be prompted to install locally (this project) or globally (~/.claude/).

Non-interactive

npx spec-drum --local   # install to .claude/ and .specs/
npx spec-drum --global  # install to ~/.claude/

Getting started

npx spec-drum --local          # install skills into your project
/spec-steer                    # bootstrap steering documents (CLAUDE.md files)
/spec-plan "add user avatars"  # create a spec from a description or ticket URL
/spec-execute add-user-avatars # implement the spec with atomic commits
/spec-verify add-user-avatars  # verify against requirements

For smaller tasks that don't need a full spec, use /spec-quick:

/spec-quick fix typo in login error message

Run /spec-list at any time to see the status of all specs.

Workflow

Full spec lifecycle (tickets, features, non-trivial work)

  1. /spec-steer — Manage steering documents: analyze the codebase and create directory-scoped CLAUDE.md convention files on first run; detect and sync drift on subsequent runs
  2. /spec-plan <ticket> — Create a spec from a GitHub issue URL, Jira ID, or plain text description
  3. /spec-execute <ticket-id> — Execute the spec: creates a branch, implements tasks with atomic commits, tracks progress
  4. /spec-verify <ticket-id> — Verify the implementation against the spec's requirements and acceptance criteria

Listing specs

/spec-list — Show a dashboard of all specs with their status, priority, branch, and progress. Specs are grouped by status: blocked first, then in-progress, review, draft, done.

Quick tasks (small, well-scoped changes)

/spec-quick <description> — Skip the spec lifecycle for tasks you already understand. Builds an ephemeral plan (shown in-conversation, not written to disk), asks for approval, then executes with atomic commits. No .specs/ files created.

/spec-quick add dark mode toggle to the settings page
/spec-quick fix null pointer in auth middleware --verify
/spec-quick refactor user service to repository pattern --branch refactor-user-svc

Options:

  • --branch <name> — create and switch to a branch before executing
  • --verify — run tests/lint/typecheck after all tasks complete

If the task turns out to need more than 5 tasks, spec-quick will tell you to use /spec-plan instead.

What gets installed

Local (--local)

.claude/skills/
  spec-steer/SKILL.md
  spec-plan/SKILL.md
  spec-execute/SKILL.md
  spec-verify/SKILL.md
  spec-quick/SKILL.md
  spec-list/SKILL.md
.claude/bin/
  validate-spec.js       # Frontmatter validator (PostToolUse hook)
.claude/settings.json    # Hook registration (merged, not overwritten)
.specs/
  CLAUDE.md              # Spec conventions

Global (--global)

~/.claude/skills/
  spec-steer/SKILL.md
  spec-plan/SKILL.md
  spec-execute/SKILL.md
  spec-verify/SKILL.md
  spec-quick/SKILL.md
  spec-list/SKILL.md
~/.claude/bin/
  validate-spec.js
~/.claude/settings.json  # Hook registration (merged, not overwritten)

Steering documents

/spec-steer manages directory-scoped CLAUDE.md files — steering documents — that capture the actual conventions Claude observes in your codebase. Unlike generic instructions, steering documents contain only what's discovered: your error handling patterns, naming conventions, test structure, and so on.

Run /spec-steer once to bootstrap them. Run it again whenever the codebase has evolved: it re-samples each directory, diffs the results against the existing documents, and proposes additions and removals for your review. Nothing is deleted without confirmation.

Updating

Run npx spec-drum again. Unchanged files are skipped. Modified files prompt you to overwrite, skip, or backup.

License

Apache-2.0