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

agenthud

v0.19.0

Published

TUI dashboard for AI coding agents (Claude Code, Codex, Kiro): live monitor for parallel sessions and sub-agents across agents, with structured activity export and LLM-generated daily/weekly digests

Readme

AgentHUD

npm version CI codecov

A heads-up display for your AI coding agents — Claude Code, OpenAI Codex, AWS Kiro, and opencode. AgentHUD reads each agent's on-disk sessions (JSONL files, or opencode's SQLite store) and merges them into one tree, so a project you've touched from several agents shows as a single row with combined sessions and sub-agents.

demo

It's organized as three layers, by who's reading — a human at a glance, a human at the end of the day, and a machine:

  • agenthudthe live HUD. A real-time TUI showing which session is [working] versus [waiting] on you, right now, across every agent. Glance at it in a side terminal and know what all your agents are doing. This is the hero — the name is HUD for a reason.
  • agenthud summarythe daily digest. Fold a day (or a week) into an LLM engineering summary — a standup-in-one-command habit, via whichever agent CLI you have installed (claude, codex, or kiro-cli, auto-detected).
  • agenthud reportthe machine layer. Structured Markdown / JSON. summary is literally report piped into an agent CLI, so the daily digest isn't a black box — and you can pipe report into anything else, too.

See FEATURES.md for the full surface — every flag, keybinding, config key, file path, and env var. Per-agent session schemas: Claude Code · Codex CLI · Kiro IDE · Kiro CLI · opencode (or browse docs/schemas/).

Requires Node.js 20+. Open agenthud in a separate terminal while you work; press ? inside the TUI for in-app help.

Try without installing

npx agenthud
# or: bunx agenthud

Install for daily use

npm i -g agenthud
# or: bun i -g agenthud

Platform support. Primary development is on macOS and Linux; the full test suite runs on all three platforms in CI (including Windows). Windows runtime behavior is exercised by a manual smoke job but isn't daily-driven — issues there are valued bug reports.

Quickstart

# 1 · The live HUD
agenthud                                  # all projects, every agent
agenthud --cwd                            # scope to the project containing $PWD

# 2 · The daily digest
agenthud summary                          # synthesize today via your agent CLI
agenthud summary --last 7d                # cross-day synthesis of the last 7 days
agenthud summary -oI                      # open the summary + the summaries index

# 3 · The machine layer
agenthud report                           # today's activity as markdown
agenthud report --format json             # script-readable
agenthud report --with-git                # merge git commits into the timeline

The live HUD — agenthud

The hero. A split-view TUI: a project tree (top) and an activity viewer (bottom), refreshing as your agents work.

┌─ Projects ────────────────────────────────────────────────────────────────────────────────────┐
│ 4 projects (2) · 31 sessions (3) · 142 sub-agents (1) · ⊘ 2 hidden                            │
│ > agenthud  ~/WestbrookAI/agenthud  6 sessions (2) · 114 sub-agents                           │
│     #864f [working] Fix the auth bug in login flow                         9s 41% claude opus │
│         ├─ » code-reviewer                                                                    │
│     #019e [waiting] review the data layer                                  2m 44% codex gpt-5 │
│   myproject  ~/work/myproject                                                              2d │
│     #def4 [cool] Add OAuth support                                        2m 5% kiro-ide auto │
│ ... 12 cold projects                                                                          │
└───────────────────────────────────────────────────────────────────────────────────────────────┘
┌─ Activity · agenthud ─────────────────────────────────────────────────────────────────────────┐
│ [10:23] ○ Read  src/ui/App.tsx                                                                │
│ [10:23] ~ Edit  src/ui/App.tsx                                                                │
│ [10:23] $ Bash  npm test                                                                      │
│ [10:23] < Response  Tests passed successfully                                                 │
│ [10:25] ⠧ Edit  src/auth/oauth.ts  ← bold + spinner = live                                    │
└───────────────────────────────────────────────────────────────────────────────────────────────┘

The badge tells you, per session, what the agent is doing right now:

  • [working] — there's a pending tool call at the tail; the agent is mid-step.
  • [waiting] — the turn yielded back to you (a question, or a finished reply).

These live states are read from the structure of each session's JSONL tail and override the time-based recency badges ([hot] / [warm] / [cool] / [cold]) whenever a session is live. Each row also carries a colored provider label (claude / codex / kiro / kiro-ide / opencode), its model, and a context-window gauge; only hot/warm (and live) sessions count as active and render bright. Sub-agents nest under their parent regardless of which agent spawned them, the panel title is a tree-wide census, and cold projects collapse under a ... N cold projects sentinel. Press on any activity for a scrollable detail view.

Full keybinding and badge reference: FEATURES.md.

The daily digest — agenthud summary

The asynchronous human layer: a day or a date range, synthesized into an engineering summary you can read like a standup note.

agenthud summary --date yesterday         # one day
agenthud summary --last 7d                # a rolling window
agenthud summary --from 2026-06-01 --to 2026-06-07

The summary runs through an agent CLI of your choice. By default it auto-detects the first one installed in claude → codex → kiro order; set a default with summary.engine in ~/.agenthud/config.yaml, or override per-run with --engine <claude|codex|kiro>. So Claude-, Codex-, and Kiro-only users all get summaries with no extra setup.

Summaries are cached one-file-per-day under ~/.agenthud/summaries/, cross-linked into a browsable index (-I to open it), and stamped with the engine + model that produced them — so switching engines regenerates rather than serving stale text.

Scripting & integration — agenthud report

agenthud report is the machine-readable layer the other two are built on. It isn't a feature you rarely touch — it's the substrate of the one you use every day:

# This is, essentially, what `summary` does under the hood:
agenthud report --date yesterday | claude -p "$(cat ~/.agenthud/summary-prompt.md)"

# …so the same report can flow anywhere else:
agenthud report --format json | jq '.sessions[].model'   # into a dashboard
agenthud report --with-git    | your-own-llm-call        # into any pipeline

summary is just report piped into an agent CLI. The digest isn't a black box — it's report + a prompt + whichever LLM you like, and you can swap any part. Markdown is the default; --format json (with provider + model per session) is the script-friendly form.

Configuration

~/.agenthud/config.yaml is auto-created on first run with sensible defaults. CLI flags override config values per-invocation. Resolution order is CLI flag → summary.<key> → report.<key> → built-in default, and the effective values print to stderr at the start of every report / summary run.

App-managed UI state (hidden projects/sessions/sub-agents toggled by h) lives separately in ~/.agenthud/state.yaml.

Full schema, file paths, and env vars: FEATURES.md → Config.

More

License

MIT