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

v0.1.32

Published

AI-orchestrated specification-driven delivery CLI that plans, validates, and ships production-ready software projects.

Readme

sdd-cli

AI-orchestrated CLI for software delivery: it turns one product goal into requirements, specs, test plans, generated app code, quality checks, and optional GitHub publish.

What It Does

  • Starts from one command:
    • sdd-tool "create a notes app with persistence"
  • Runs an end-to-end lifecycle:
    • requirement draft
    • functional/technical/architecture/test artifacts
    • generated app in generated-app/
    • quality gates and repair loop
    • git init/commit
    • optional GitHub publish
  • Works with provider CLIs (Gemini by default, Codex optional).

Why Use It

  • Reduces time from idea to usable baseline project.
  • Enforces documentation + quality gates before accepting delivery.
  • Keeps artifacts traceable from planning to implementation.

Install

npm install -g sdd-cli

Binary aliases:

  • sdd-cli
  • sdd
  • sdd-tool

Fast Start

sdd-tool "create a calculator app"

Or explicit:

sdd-cli hello "create a calculator app"

Best-Payoff Commands

  • sdd-cli hello "<goal>": full autopilot flow.
  • sdd-cli suite "<goal>": continuous mode; asks only blocking questions.
  • sdd-cli status --next: exact next command suggestion.
  • sdd-cli config show: inspect active config.
  • sdd-cli config set <key> <value>: set provider/model/workspace defaults.

Global Flags

  • --approve, --improve, --parallel
  • --non-interactive, --dry-run, --beginner, --from-step, --iterations
  • --project, --output, --scope, --metrics-local
  • --provider, --gemini, --model

Config (Important)

Config file:

  • Windows: %APPDATA%/sdd-cli/config.yml
  • macOS/Linux: ~/.config/sdd-cli/config.yml

Default values:

  • workspace.default_root: {{home}}/Documents/sdd-tool-projects
  • ai.preferred_cli: gemini
  • ai.model: gemini-2.5-flash-lite
  • mode.default: guided
  • git.publish_enabled: false

Recommended first setup:

sdd-cli config init
sdd-cli config set workspace.default_root "{{home}}/Documents/sdd-tool-projects"
sdd-cli config set ai.preferred_cli gemini
sdd-cli config set git.publish_enabled false

Provider Notes

  • Gemini default:
    • sdd-cli --provider gemini hello "<goal>"
    • shortcut: sdd-cli --gemini hello "<goal>"
  • Auto-select available provider:
    • sdd-cli --provider auto hello "<goal>"
  • Verify provider wiring:
    • sdd-cli ai status

Output Layout

Projects are created under your workspace root:

  • <workspace>/<project>/requirements/...
  • <workspace>/<project>/generated-app/...
  • <workspace>/<project>/decision-log/...

Release and Docs

  • Changelog: docs/CHANGELOG.md
  • Command reference: docs/COMMANDS.md
  • Error code map: docs/ERROR_CODES.md
  • Release notes: docs/releases/
  • Strategy and market docs: docs/strategy/

License

MIT