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

hzl-cli

v1.32.0

Published

CLI for HZL - External task ledger for coding agents and OpenClaw.

Readme

HZL (Hazel)

External task ledger for coding agents.

📚 Full Documentation — Concepts, workflows, and CLI reference


Why HZL?

Most task trackers are built for humans. HZL is built for agents:

  • Backend-first — Task database with a CLI, not another Trello
  • Model-agnostic — Tasks live outside any vendor's memory
  • Multi-agent safe — Atomic claiming prevents duplicate work
  • Resumable — Checkpoints let work survive session boundaries

If you already have a favorite human todo app, keep it. HZL is for shared task state that multiple agents can read and write.

When to Use HZL

HZL is for when work outlives a single session:

  • Cross-agent workflows — Claude Code, Codex, Gemini sharing one task board
  • Session persistence — Pick up where you left off tomorrow
  • Orchestration — One agent delegates to another with clean handoffs
  • Backup — Cloud sync keeps task state safe

If you only use one agent and never need persistence, the built-in tracker is fine. Once you need durability or coordination, reach for HZL.


Quickstart

1. Install

Requires Node.js 22.14+.

curl -fsSL "https://raw.githubusercontent.com/tmchow/hzl/main/scripts/install.sh?$(date +%s)" | bash

Homebrew (macOS/Linux):

brew tap tmchow/hzl && brew install hzl && hzl init

NPM:

npm install -g hzl-cli && hzl init

2. Add to Your Project

Append the agent policy to your repo so agents know when to use HZL:

curl -fsSL https://raw.githubusercontent.com/tmchow/hzl/main/snippets/AGENT-POLICY.md >> AGENTS.md

3. Create Tasks and Work

# Create a project and tasks
hzl project create my-feature
hzl task add "Design the API" -P my-feature
hzl task add "Implement endpoints" -P my-feature --depends-on 1

# Claim and work
hzl task claim 1 --assignee claude-code
hzl task checkpoint 1 "API design complete"
hzl task complete 1

# View progress
hzl serve  # Opens web dashboard at localhost:3456

Enable Cloud Sync (Optional)

hzl init --sync-url libsql://<db>.turso.io --auth-token <token>

Documentation

| Section | What's There | |---------|-------------| | Getting Started | Installation, quickstart, agent setup | | Concepts | Projects, tasks, dependencies, checkpoints, leases | | Workflows | Single-agent, multi-agent, handoffs, breakdown patterns | | CLI Reference | Complete command documentation | | Web Dashboard | Kanban board setup and usage | | Troubleshooting | Common issues and fixes |


Agent Setup

Claude Code

/plugin marketplace add tmchow/hzl
/plugin install hzl@hzl

OpenAI Codex

mkdir -p ~/.codex/skills/hzl
curl -fsSL https://raw.githubusercontent.com/tmchow/hzl/main/skills/hzl/SKILL.md -o ~/.codex/skills/hzl/SKILL.md

OpenClaw

Copy/paste into an OpenClaw chat:

Install HZL from https://github.com/tmchow/hzl and run hzl init. Install the HZL skill from https://www.clawhub.ai/tmchow/hzl. Then append the HZL policy from https://raw.githubusercontent.com/tmchow/hzl/main/openclaw/OPENCLAW-TOOLS-PROMPT.md to my TOOLS.md.

See Coding Agents Setup for full details.


Packages

| Package | Description | Install | |---------|-------------|---------| | hzl-cli | CLI for task management | npm install -g hzl-cli | | hzl-core | Core library for programmatic use | npm install hzl-core | | hzl-web | Web server and Kanban dashboard | npm install hzl-web |


License

MIT