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

dw-kit

v1.4.0

Published

AI development workflow toolkit — structured, quality-assured, team-ready. From requirements to dashboard.

Readme

dw-kit

An AI development workflow toolkit for teams using agentic IDEs (Claude Code, Cursor) — from idea to review-ready commits.

v1.3.6 · npm install -g dw-kit · Docs · Get started · Cheatsheet · Migration v1.3 · Changelog


What is dw-kit?

dw-kit helps your team run AI-assisted development with a repeatable workflow and clear checkpoints:

Initialize → Understand → Plan → Execute (TDD) → Verify → Close

Workflow overview

dw runs a 6-phase process (all phases for standard and thorough):

Initialize → Understand → Plan (stops for approval) → Execute (TDD; 1 commit per subtask) → Verify (quality gates + review sign-off) → Close (handoff + archive when done).

6 phases (full workflow)

  • Initialize: clarify task scope and set up the workspace + task docs.
  • Understand: survey the codebase, dependencies, patterns, and test coverage (no implementation).
  • Plan: design the solution and subtasks; pause for your approval.
  • Execute: implement using TDD; each subtask produces a commit.
  • Verify: run quality gates + review sign-off to ensure correctness and safety.
  • Close: handoff notes, finalize progress, and archive when done.

It’s designed for collaboration (Dev / Tech Lead / QA / PM) and keeps work auditable via lightweight task docs.


Release notes

  • v1.4 (in progress) — Optional Review Render Pipeline (ADR-0007): /dw:review --visual plus a separate dw-kit-render package turn findings into SVG + PNG cards for PR comments / Slack / stakeholders. Pure JS + WASM, universal npm install, no system deps. See docs/review-renderer.md.
  • v1.3.6 (2026-05-14) — Supply-Chain Guard upgraded to 3-pillar architecture: OSV snapshot + curated IoC fixture (version-aware, wired into default scan) + AI-Native NEW-package heuristic that catches zero-day-ish risk at the AI-edit boundary. See CHANGELOG.md#v136--2026-05-14 and ADR-0006.
  • v1.3.5 (2026-05-12) — AI-Native Supply-Chain Guard: dw security-scan CLI + OSV.dev auto-sync + Edit-lockfile hook + scoped .gitignore for end-user projects. See ADR-0005. Public 90-day sunset review committed for 2026-08-12.
  • v1.3.4 (2026-04-21) — /dw:plan Quick Debate (red/blue self-critique), depth-driven activation
  • v1.3.3 (2026-04-21) — Writer skills v1/v2 compatibility fix
  • v1.3.0 (2026-04-21) — 5-pillar governance layer + telemetry foundation + ADRs + v2 task docs (ADR-0001)
  • v1.2.0 (2026-04-09) — CHANGELOG.md#v120--2026-04-09
  • Full changelog: CHANGELOG.md
  • Latest release notes: GitHub Releases

What's in v1.3.6 for your team

Reaction time when a supply-chain incident drops goes from 24-72 hours (wait for OSV index + npm publish cycle) to ~1 hour (AI edits lockfile → hook fires → heuristic flags BEFORE anyone knows).

  • 3-pillar default scandw security-scan now runs OSV snapshot + curated IoC fixture + AI-Native heuristic in one go. Heuristic only probes NEW/bumped packages from git show HEAD:package-lock.json diff — typical edit = 1-5 packages probed, not 1000+.
  • npm registry metadata heuristic — composite scoring on recent_publish (<72h), popular_package (≥10k weekly DL), maintainer_change_recent, major_version_jump, typo_squat. Per-package metadata cached 1h. Tunable threshold via .dw/config/dw.config.yml.
  • Version-aware IoC fixtureaffected_range per entry. Concrete versions out-of-range are skipped (no false positives). Range specs (^1.169.0) emit ambiguity warnings with severity downgrade.
  • Hook fires dw security-scan --heuristic-only on Claude Code lockfile edit — fast diff-only check.
  • Telemetry per pillarsource: 'osv' | 'fixture' | 'heuristic' tracked separately so the 2026-08-12 sunset review attributes catches to the right pillar.
  • >1000 packages crash bug from v1.3.5 fixed (chunked OSV batches).

What's in v1.3.5 for your team

  • dw security-scan — scan for known supply-chain advisories against your project's package-lock.json (full match) or package.json (pre-install approximate). Uses OSV.dev as data source (multi-maintainer upstream feed; no solo-curated bundle to go stale).
  • AI-aware hook — fires when Claude Code edits a lockfile. Auto-wired by dw init --preset team or --preset enterprise; opt-in OFF for --preset solo.
  • Scoped .gitignoredw init and dw upgrade write .dw/.gitignore and .claude/.gitignore managed blocks. Framework files stay out of your repo; tasks/decisions/docs/config stay in.
  • dw doctor has a new security section that fails loud if advisory snapshot is stale (>7 days) or schema-incompatible.
  • Sunset rule — feature retires silently in v1.4.x if 90-day telemetry shows zero real catches OR >5% false-positive rate. Disciplined experiment, not panic ship.

Install

npm install -g dw-kit

Quick start

Setup dw in project directory:

dw init

Then in Claude Code CLI, run the full workflow:

/dw:flow your-task-or-anythings

Discover other skills:

/dw:prompt
/dw:thinking
/dw:decision
...

v1.3 note: Slash commands switched from /dw-* to /dw:* (namespace convention). See MIGRATION-v1.3.md.


CLI commands

dw init                 # setup wizard / presets
dw init --solo          # zero-config solo dev setup (v1.3)
dw validate             # validate .dw/config/dw.config.yml
dw doctor               # installation health check
dw upgrade              # update toolkit files (override-aware)
dw upgrade --check      # check for updates only
dw upgrade --dry-run    # preview changes
dw prompt               # build a well-structured task prompt (autocomplete + wizard)
dw prompt --text "..."  # non-interactive: structure a description directly
dw active               # regenerate .dw/tasks/ACTIVE.md index (v1.3)
dw metrics              # inspect local telemetry (v1.3, opt-out via DW_NO_TELEMETRY=1)
dw dashboard            # active tasks + ADRs + telemetry summary (v1.3)
dw claude-vn-fix        # patch Claude CLI to fix Vietnamese IME (backup/restore)

dw claude-vn-fix patches the local Claude CLI bundle to fix Vietnamese IME input (DEL char \x7f issue). Includes auto-backup and rollback.


Depth system

Pick a default depth for your project, then override per task when risk increases.

| Depth | Best for | Workflow | |-------|----------|----------| | quick | Solo dev, hotfix, familiar code | Understand → Execute → Close | | standard | Small teams, new features | Full 6 phases | | thorough | Risky changes (API/DB/security) | Full workflow + arch-review + test-plan |

Configured in .dw/config/dw.config.yml:

workflow:
  default_depth: "standard"

What gets added to your repo?

.dw/
  core/       methodology + PILLARS.md
  config/     dw.config.yml (+ optional .local.yml)
  decisions/  ADRs (v1.3) — architectural decision records
  tasks/      task docs + ACTIVE.md index (v1.3)
  metrics/    local telemetry (v1.3, opt-out)
.claude/    # Claude Code: skills, hooks, agents, rules
CLAUDE.md   # project context for the agent

5-pillar architecture (v1.3+)

dw-kit is a context-first governance layer on top of your AI agent — not a prescriptive workflow engine. Five pillars, verb-based:

| Pillar | Purpose | Examples | |--------|---------|----------| | Guards | Safety before action | safety-guard, privacy-block, pre-commit-gate | | Surfaces | Make state visible | ACTIVE.md, dw dashboard, project-map.md | | Records | Preserve memory | ADRs in .dw/decisions/, task docs | | Bridges | Continuity across sessions/roles | session-init, auto-handoff in tracking.md | | Tunes | Adapt to team shape | presets (solo, team, enterprise), config flags |

Full spec: .dw/core/PILLARS.md

Design principle — obsolescence test: Every feature must answer "will this be more valuable when AI is smarter?" If no → cut or defer.


Maintainer: huygdv