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

gswd

v1.1.0

Published

Get Shit Well Done — CLI meta-prompting and spec-generation system

Readme

   ██████╗ ███████╗██╗    ██╗██████╗
  ██╔════╝ ██╔════╝██║    ██║██╔══██╗
  ██║  ███╗███████╗██║ █╗ ██║██║  ██║
  ██║   ██║╚════██║██║███╗██║██║  ██║
  ╚██████╔╝███████║╚███╔███╔╝██████╔╝
   ╚═════╝ ╚══════╝ ╚══╝╚══╝ ╚═════╝

Clarity is the bottleneck, not compute. GSWD produces bulletproof specs so you can one-shot the build.

npm version License: MIT Tests

GSWD is the thinking stage before GSD builds. The bottleneck in building with AI isn't the AI — it's feeding it a spec that's complete, traceable, and unambiguous. GSWD forces that rigor upfront so you can hand off a GSD contract and build the first time, without guessing.

Pipeline

IMAGINE  ->  SPECIFY  ->  AUDIT  ->  COMPILE
   |            |           |           |
Direction    Spec+IDs   Coverage   GSD Contract
  1. IMAGINE — turn a fuzzy idea into a validated product direction
  2. SPECIFY — turn that direction into a build-ready, traceable spec
  3. AUDIT — enforce full coverage (no missing journeys, no orphan requirements)
  4. COMPILE — deterministically generate the GSD contract files

Install

npx gswd-install

Copies /gswd:* slash commands to ~/.claude/commands/gswd/ for use in Claude Code.

Quick Start

/gswd:start

That's it. Describe your idea conversationally — GSWD walks you through the full pipeline.

Have an idea file already?

/gswd:start @idea.md

What It Looks Like

$ /gswd:start

Describe your product idea (or press Enter to type it out):
> A task management app for remote teams with async standups
> and no meeting culture overhead.

Got it. Let me confirm before we begin:

  Product: Async standup and task coordination tool for remote teams
  Angle:   No meeting overhead — async-first by design

Does this capture your idea? [yes]

┌─────────────────────────────────────────────┐
│  IMAGINE — Validating direction              │
│  Running research agents...                  │
└─────────────────────────────────────────────┘

  Researching market landscape...
  Analyzing ICP and GTM angles...
  Freezing key decisions...

  ✓ DECISIONS.md
  ✓ IMAGINE.md  ICP.md  GTM.md  COMPETITION.md

┌─────────────────────────────────────────────┐
│  SPECIFY — Building execution-grade spec     │
└─────────────────────────────────────────────┘

  ✓ SPEC.md  JOURNEYS.md  ARCHITECTURE.md
  ✓ INTEGRATIONS.md  NFR.md

┌─────────────────────────────────────────────┐
│  AUDIT — Checking spec coverage              │
└─────────────────────────────────────────────┘

  Checking journeys... PASS
  Checking requirements... PASS
  Checking architecture linkage... PASS

  ✓ AUDIT.md — PASS

┌─────────────────────────────────────────────┐
│  COMPILE — Generating GSD contract           │
└─────────────────────────────────────────────┘

  ✓ PROJECT.md  REQUIREMENTS.md  ROADMAP.md  STATE.md

  Done! Run /gsd:plan-phase 01 to start building.

Commands

Primary Commands

| Command | Description | |---------|-------------| | /gswd:start | Full pipeline: intake -> imagine -> specify -> audit -> compile | | /gswd:status | Show pipeline status and stage progress | | /gswd:settings | Configure GSWD workflow settings | | /gswd:help | Show command reference |

Advanced Commands

Run stages individually if you need finer control:

| Command | Description | |---------|-------------| | /gswd:imagine [@idea.md] | Validate direction and freeze key decisions | | /gswd:specify | Build execution-grade spec with traceable IDs | | /gswd:audit-spec | Audit spec for coverage — produces PASS/FAIL | | /gswd:compile | Compile spec into GSD contract docs |

Common Flags

| Flag | Available On | Description | |------|-------------|-------------| | --auto | /gswd:start, imagine, specify | Auto mode — minimal interruptions | | --resume | /gswd:start, imagine, specify, audit-spec | Resume from last checkpoint | | --skip-research | /gswd:start, imagine | Disable research agents | | --auto-fix | audit-spec | Auto-fix gaps found during audit | | --phase-style=thin\|thick | compile | Phase sizing for GSD roadmap | | --policy=<name> | /gswd:start | Auto policy: strict, balanced, aggressive |

Output Artifacts

GSWD artifacts (in .planning/)

  • IMAGINE.md — product vision and direction
  • ICP.md — ideal customer profile
  • GTM.md — go-to-market strategy
  • COMPETITION.md — competitive landscape
  • DECISIONS.md — frozen decisions, success metrics, risks
  • SPEC.md — full product specification
  • JOURNEYS.md — user journeys with traceable IDs
  • ARCHITECTURE.md — system architecture
  • INTEGRATIONS.md — external integrations
  • NFR.md — non-functional requirements
  • AUDIT.md — coverage matrix and PASS/FAIL verdict

Compiled GSD contract (in .planning/)

  • PROJECT.md — project context
  • REQUIREMENTS.md — scoped requirements
  • ROADMAP.md — phased execution plan
  • STATE.md — project memory

After GSWD

Once compile is done, hand off to GSD:

/gsd:plan-phase 01

GSD picks up the compiled contract and builds phase by phase.

CLI Usage

GSWD also ships a CLI for scripting and non-interactive workflows:

gswd imagine @idea.md
gswd specify
gswd audit
gswd compile
gswd status

License

MIT