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

@yorz/cli

v0.7.0

Published

**English** | [中文](./README_CN.md)

Downloads

2,836

Readme

YorZ

English | 中文


Why YorZ

YorZ (Youzi) keeps vibe coding from turning your codebase into a black box.
It also addresses a common failure mode in SDD (spec-driven development): developers stop reading the specs.

Agents can generate documents so quickly that developers get overloaded and pushed out of the workflow.
YorZ turns spec information into visual, structured views and provides an SDD-focused UI, so Agents can work at full speed without burying developers in text.

preview

Features

  • A built-in lightweight SDD skill with a UI tailored to SDD workflows
  • Visual diagrams that make Agent output easier to read and understand
  • One-click git worktree isolation, with concurrent Agents running on separate tasks
  • Minimal user intervention while key decisions stay under user control
  • Deep debug mode that uses evidence chains to diagnose hard problems Agents struggle to solve
  • Works with mainstream Coding Agents including Claude Code, OpenCode, and Codex

User Guide

Installation

pnpm add -g @yorz/cli

# or

npm install -g @yorz/cli

Quick Start

Start the Service

yorz serve

Start the YorZ Service. It runs in the background by default. Open http://localhost:7423 in your browser to access the dashboard.

On startup, yorz serve automatically checks the yorz-spec skill. If it is missing or out of date, YorZ installs or updates it for every supported Agent (Claude Code / OpenCode / Codex) and prints the result before starting the Service.

To stop the background service:

yorz serve stop

Add a Project

yorz add /path/to/your/project

Initialize the directory as a YorZ project by creating .yorz/ config, registering it with the Service, and adding .yorz/tmp to .gitignore.

The yorz-spec skill teaches your AI Agent how to drive spec documents through the plan / tasks / execute / done stages. It is installed and kept up to date automatically by yorz serve as described above, so no manual installation is required.

Command Reference

| Command | Description | | ----------------- | ---------------------------------------------------------------------- | | yorz serve | Start or reuse the background YorZ Service with multi-project support. | | yorz serve stop | Stop the background YorZ Service. | | yorz add <path> | Initialize and register a directory as a YorZ project. |

Global Options

| Option | Description | | --------------- | ----------------------------- | | -V, --version | Print the YorZ version. | | -h, --help | Display help for any command. |

Development

# Install dependencies
pnpm install

# Build CLI + GUI
pnpm build

# Start the local CLI service in the foreground
pnpm dev:cli

# In another terminal, start the GUI dev server
pnpm dev:gui

# Run tests
pnpm test