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

sdd-multiagent-kit

v0.1.1

Published

Spec-Driven Development framework for CLI coding agents: a seven-model multi-lab critique loop, completeness and simplicity gates, dependency-ordered milestones, and a zero-context Stranger Test. Installs into Claude Code, Claude Desktop, OpenCode, and An

Readme

SDD Multi-Agent Kit

npm CI license: MIT

Spec-Driven Development for CLI coding agents: a disciplined, multi-model process that turns a brief into tested, milestone-ordered deliverables you can trust.

Why

LLM-written software is fast but often sloppy. The SDD Multi-Agent Kit replaces improvisation with a real engineering loop: a brief is turned into a spec, a plan, tasks, a workflow, and tests; seven independent critic models attack the design in a multi-lab critique loop; completeness and simplicity gates enforce discipline; and a zero-context Stranger Test catches gaps that authors are blind to.

Quickstart

npm install -g sdd-multiagent-kit
sdd-setup

sdd-setup collects your API keys, detects your AI tools (Claude Code, Claude Desktop, OpenCode, Antigravity), and installs the kit into each one. You then invoke it in any of those tools with the trigger:

/sdd

For a complete walkthrough see docs/GUIDE.md.

What you get

  • A master skill (kit/SKILL.md) plus eleven sub-skills: research scan, specify, plan, task breakdown, Clarify, milestone builder, workflow, scenario tester, critique loop, Stranger Test, and history logger.
  • A critique engine (kit/scripts/orchestrate_critique_loop.py) that runs seven independent critic models in rounds until the design is clean.
  • An installer (bin/setup-wizard.js + four adapters) that wires the kit into your tools.
  • An examples project under examples/ (see below).

API keys

sdd-setup collects three provider keys in one pass (kept in your environment only, never written to files): NVIDIA_NIM_API_KEY, GOOGLE_AISTUDIO_API_KEY, OLLAMA_API_KEY.

Installation locations

| Tool | Location | Trigger | |---|---|---| | Claude Code / Claude Desktop | .claude/skills/sdd-multiagent-kit/ | /sdd | | OpenCode | reads .claude/skills/ (shared) | /sdd | | Antigravity | ~/.agents/skills/sdd-multiagent-kit/ | invocation phrase in SKILL.md |

Examples

Working example projects ship under examples/. You can run the kit against any folder that contains a PLAN.md.

Documentation

Contributing

See CONTRIBUTING.md — includes worked examples for adding a new AI tool and a new critic model, plus how releases work.

Releases

Published to npm from GitHub Actions using Trusted Publishing, so every release carries provenance: the npm page links back to the exact commit and workflow run that built the tarball, and you can verify it yourself:

npm audit signatures

No publish token exists in the repository — releases are authenticated by a short-lived OIDC token, and no maintainer runs npm publish by hand. See CHANGELOG.md for what changed in each version.

Security

See SECURITY.md to report vulnerabilities privately.

License

MIT

Acknowledgements

This project adapts patterns from github/spec-kit and panaversity/spec-kit-plus.