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

zest-dev

v0.1.0

Published

A lightweight, human-interactive development workflow for AI-assisted coding

Readme

Zest Dev

A lightweight, human-interactive development workflow for AI-assisted coding.

Quick Start

Install the Claude Code plugin:

/plugin marketplace add https://github.com/nettee/zest-dev
/plugin install zest-dev

Install the CLI:

npm install -g zest-dev

Usage Workflow

Step-by-Step

Work through a feature spec one phase at a time, with human review between each stage.

/zest-dev:new "My new feature"   # Create a spec and set it as current
/zest-dev:research            # Research requirements and explore the codebase
/zest-dev:design              # Clarify requirements and design the architecture
/zest-dev:implement           # Build the feature following the design

Each command advances the spec to the next status: new → researched → designed → implemented.

Quick Implementation

Run all stages end-to-end with approval checkpoints. Useful for straightforward tasks.

Start from a description:

/zest-dev:quick-implement "My new feature"

Or start from an existing spec:

zest-dev set-current <spec-id>
/zest-dev:quick-implement

Summarize a Session

After a quick coding conversation, capture what was discussed and built into a permanent spec file.

/zest-dev:summarize

This is useful when you skipped the planning phase and want to document the work after the fact.

CLI Reference

The zest-dev CLI manages spec files. Use it to inspect and update specs outside of Claude.

Commands

| Command | Purpose | |---------|---------| | zest-dev status | View project status | | zest-dev show <spec-id\|current> | View spec content | | zest-dev create <spec-name> | Create new spec | | zest-dev set-current <spec-id> | Set current working spec | | zest-dev unset-current | Unset current working spec | | zest-dev update <spec-id> <status> | Update spec status | | zest-dev create-branch | Create a git branch from the current spec |

Status Transitions

Valid status values: new, researched, designed, implemented

  • Forward-only transitions (skipping is allowed): e.g. new → designed is valid
  • Backward transitions fail: e.g. implemented → designed
  • Setting the same status again returns an error

Generate Prompts for Codex

For editors like Codex that don't support project-level commands, use zest-dev prompt to generate the equivalent prompt text:

codex "$(zest-dev prompt new 'some description')"
codex "$(zest-dev prompt research)"
codex "$(zest-dev prompt design)"
codex "$(zest-dev prompt implement)"
codex "$(zest-dev prompt summarize)"

Project Structure

project/
├── specs/
│   ├── 001-init-project/
│   │   └── spec.md
│   ├── 002-feature-name/
│   │   └── spec.md
│   └── current -> 002-feature-name (symlink)
└── .zest-dev/
    └── template/
        └── spec.md

Create a custom spec template at .zest-dev/template/spec.md.