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

zadar

v0.4.0

Published

Radar for your agent fleet — see which Claude Code or Codex session needs you, and what it's asking, at a glance. Sessions, dev servers, and worktrees in one calm terminal view.

Readme

zadar

Radar for your agent fleet.

Running several coding agents at once has one hidden cost: a blocked agent is silent. A session waiting on your answer looks exactly like a session making progress — until you go check every tab.

zadar is an always-open terminal view that checks for you. It watches every Claude Code and Codex session on your machine and answers one question at a glance: who needs you right now, and what for.

▲ webapp · fix/auth                                              waiting · 8m
    "Should I overwrite the existing config at app/config.ts?"
     1  Overwrite    2  Merge keys

The question an agent is stuck on floats to the top, options included — you decide and move on. Errors, finished work waiting for review, and sick dev servers queue up the same way, ranked by urgency.

Everything else stays quiet until it matters: who's actually working (the spinner moves only while the transcript does — a stalled session freezes), how close each session is to its context limit, what the fleet costs per hour, which dev server is eating 14GB, which worktrees are safe to prune.

And setup is nothing. zadar reads the session files your agents already write — no wrapper, no SDK, no hooks into your workflow. Quit it and nothing changes; open it and you can see.

Install

# macOS — standalone binary, no dependencies (adds itself to your PATH)
curl -fsSL https://raw.githubusercontent.com/0xMoaz/zadar/main/install.sh | bash

Or, with Bun installed:

bunx zadar              # disposable try — nothing lands on your PATH
bun add -g zadar        # keep it
npm install -g zadar    # npm works too (Bun still required to run)

Then open a new terminal and run:

zadar

q quits · ? shows the keymap. zadar auto-updates on launch (the new version applies next open); zadar upgrade forces it, ZADAR_NO_AUTO_UPDATE=1 opts out.

The view

  • Needs you — everything blocked on you, ranked: questions with their answer options, tool approvals, errors, diffs awaiting review, sick servers. When it's empty, it says so and gets out of the way.
  • Sessions — every live agent with truthful status, context %, and cost.
  • Servers · Projects — bound ports with memory and staleness; repos with worktrees, dirty counts, and guarded pruning.

The full tour is in FEATURES.md.

Keys

| | | |---|---| | ↑↓ / jk | move | | / click | go to the session's app · open server · fold | | | inspect a queue item | | c / x | copy resume command or URL / kill (with confirm) | | p | prune a clean worktree | | t / n | activity log / desktop notifications | | ? / q | help / quit |

Requirements

  • macOS (arm64 or x64) — Linux is on the roadmap; the collectors are macOS-bound today.
  • Something to watch: Claude Code and/or OpenAI Codex. zadar reads their session files; it never wraps or modifies them.

For builders

zadar --api [port] serves the fleet state as JSON on 127.0.0.1:7433 (GET /snapshot, GET /events) — mount a web view, a menubar widget, whatever you like.

Developing zadar itself:

git clone https://github.com/0xMoaz/zadar && cd zadar
bun install
bun run dev          # live dashboard
bun run demo         # mock fleet, no real agents needed
bun test             # unit + headless interaction suite

License

MIT