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

design-shit-properly

v2.1.4

Published

Design Shit Properly - A complete design workflow system for Claude Code with state management, implementation generation, and goal-backward verification.

Readme

DSP - Design Shit Properly

A complete design workflow system for Claude Code. Takes you from vague requirements to polished, reviewed implementations with state management, implementation generation, and goal-backward verification.

NPM Version Downloads GitHub Stars License

/dsp:start → /ux-jesus → /ux → /dsp:execute → /ui → /dsp:execute → /design-engineer → /dsp:verify
                               (wireframe)          (polished)

Installation

npx design-shit-properly

Options

npx design-shit-properly --global     # Install to ~/.claude/ (all projects)
npx design-shit-properly --local      # Install to ./.claude/ (current project)
npx design-shit-properly --uninstall  # Remove DSP

Updating

npx design-shit-properly --check-update  # Check for updates
npx design-shit-properly --update        # Update to latest version
npx design-shit-properly@latest          # Or install latest directly

What's New in v2.1

  • Implementation Generation - /dsp:execute creates working React components
  • Two-Stage Execution - Wireframe (after UX) + Polished (after UI)
  • Goal-Backward Verification - /dsp:verify checks truths, artifacts, and wiring
  • Full State Management - Persistent workflow state in .design/
  • 5 Specialized Skills - ux-jesus, ux, ui, design-engineer, ux-research

Quick Start

/dsp:start              # Begin a new design workflow
/dsp:progress           # Check where you are
/dsp:execute            # Generate implementation
/dsp:verify             # Verify completeness

Workflow

| # | Phase | Command | Output | |---|-------|---------|--------| | 1 | Discovery | /ux-jesus | DISCOVERY.md | | 2 | UX | /ux | UX-DECISIONS.md | | 2a | Execute | /dsp:execute | Wireframe components | | 3 | UI | /ui | UI-SPEC.md | | 3a | Execute | /dsp:execute | Polished components | | 4 | Review | /design-engineer | REVIEW.md | | 5 | Verify | /dsp:verify | Verification report |

Commands

| Command | Description | |---------|-------------| | /dsp:start | Initialize a new design project | | /dsp:progress | View workflow status with progress bar | | /dsp:execute | Generate implementation (wireframe or polished) | | /dsp:discuss | Capture decisions before a phase | | /dsp:verify | Goal-backward verification | | /dsp:skip | Skip current phase | | /dsp:back | Return to previous phase |

Skills

| Skill | Purpose | |-------|---------| | /ux-jesus | Discovery agent - interrogates requirements with heavy challenge mode | | /ux | UX principles - user flows, states, accessibility | | /ui | Visual design - grids, tokens, B2B patterns | | /design-engineer | Code review - a11y, React patterns, spec alignment | | /ux-research | Research planning - interviews, usability tests, synthesis |

Implementation Generation

DSP 2.1 generates working code at two checkpoints:

Wireframe Mode (After UX)

  • Validates flow before visual polish
  • Minimal styling (gray palette)
  • Full functionality
  • Output: src/components/{feature}/

Polished Mode (After UI)

  • Production-ready components
  • Full Tailwind + shadcn/ui
  • Design tokens applied
  • Output: src/components/{feature}/
UX Decisions → /dsp:execute → Test Flow → UI Spec → /dsp:execute → Final Component
                   ↓                                      ↓
              Wireframe                              Polished

State Management

DSP creates a .design/ directory to track progress:

.design/
├── config.json              # Workflow settings
├── PROJECT.md               # Design vision & constraints
├── REQUIREMENTS.md          # Trackable requirements
├── STATE.md                 # Current state and context
└── phases/
    ├── DISCOVERY.md         # Phase 1 output
    ├── UX-DECISIONS.md      # Phase 2 output
    ├── UI-SPEC.md           # Phase 3 output
    └── REVIEW.md            # Phase 4 output

Verification

/dsp:verify performs goal-backward verification:

  • Truths - What must be TRUE (problem defined, user understood, etc.)
  • Artifacts - What must EXIST (phase documents)
  • Wiring - What must CONNECT (requirements → UX → UI → Review)

Configuration

{
  "settings": {
    "depth": "standard",      // quick | standard | thorough
    "challenge_mode": "heavy" // light | heavy
  },
  "phases": {
    "ux": { "include_accessibility": true },
    "ui": { "include_b2b": true }
  }
}

Standalone vs Workflow

All skills detect .design/config.json:

  • Workflow mode - Full context, state updates, structured handoffs
  • Standalone mode - Independent operation, inline output

Requirements

  • Claude Code CLI
  • Node.js 14+

License

MIT


Made with frustration at half-assed designs.