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.1.0

Published

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

Downloads

486

Readme

dw-kit

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

v1.0 · npm install -g dw-kit · Docs · Get started · Cheatsheet


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.


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

CLI commands

dw init                 # setup wizard / presets
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 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/        # methodology, config, adapters, task docs
.claude/    # Claude Code: skills, hooks, agents, rules
CLAUDE.md   # project context for the agent

Maintainer: huygdv