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

@specd/cli

v0.2.0

Published

The command-line interface for [specd](https://github.com/specd-sdd/SpecD) — a spec-driven development platform. For more information, visit [getspecd.dev](https://getspecd.dev). Provides commands for managing the full change lifecycle, browsing specs, in

Readme

@specd/cli

The command-line interface for specd — a spec-driven development platform. For more information, visit getspecd.dev. Provides commands for managing the full change lifecycle, browsing specs, inspecting configuration and schemas, and managing agent skills.

Installation

pnpm add -g @specd/cli

Or run directly via pnpm within the monorepo:

pnpm specd --help

Quick Start

Initialize a new specd project:

specd project init

This creates specd.yaml in the current directory and scaffolds the workspace layout.

Basic change workflow:

# Create a change and associate it with specs
specd change create add-auth-flow --spec auth/login --spec auth/logout

# Check its status at any point
specd change status add-auth-flow

# Advance to the next lifecycle state
specd change transition add-auth-flow --next

# Approve at a lifecycle gate
specd change approve spec add-auth-flow --reason "Meets requirements"

# Archive once work is complete
specd change archive add-auth-flow

Invoke with no subcommand — if a specd.yaml is discoverable from the current directory, the project dashboard is shown automatically.

Command Groups

| Group | Description | | ----------- | -------------------------------------------------------------------------------------------- | | change | Create, list, inspect, and progress changes through the lifecycle. Core day-to-day commands. | | drafts | Browse and restore changes that have been shelved with change draft. | | discarded | List and inspect changes that were discarded. | | archive | Browse changes that have been archived (completed work). | | spec | List, show, validate, and manage spec files. | | project | Initialize and inspect the specd project (init, context, update, dashboard). | | config | Inspect the resolved project configuration. | | schema | Introspect, fork, extend, and validate schemas. | | skills | List, install, and update agent skills. | | graph | Code graph intelligence: index, search, impact analysis, hotspots. |

Global Options

| Option | Description | | --------------------------- | --------------------------------------------------------------------------------------------------------- | | --config <path> | Use this config file directly. Skips normal file discovery. Applies to all subcommands. | | --format text\|json\|toon | Output format. text is the default; json is suitable for scripting; toon is a rich terminal format. |

Output Formats

  • text — human-readable tables and prose (default for interactive use)
  • json — structured output suitable for piping into other tools or scripts
  • toon — rich, styled terminal output using the toon format

Switch format per-command:

specd change list --format json
specd change status add-auth-flow --format toon

Full Reference

See docs/cli/cli-reference.md for detailed documentation of every command, option, and example.