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

looptop

v0.1.1

Published

htop for autonomous engineering loops — a live terminal monitor + macOS menu-bar app

Readme

looptop

htop for autonomous engineering loops.

If you run self-hosted autonomous coding loops — launchd jobs that pull tickets, build/test/verify, and merge green work on a schedule — looptop gives you a live, at-a-glance view of every loop on your machine: health, accept-rate, what's running, the last result, and the next run. Plus one-key pause / run.

It comes in two forms that share the same engine:

  • a CLI with a live, full-screen TUI (this package), and
  • a macOS menu-bar app (download at looptop.dev).

It is loop-agnostic: nothing is hardcoded. Loops are discovered from launchd, and any loop that follows the Loop Standard shows up automatically.

Install

CLI (no install)

bunx looptop          # live TUI — the default

Or install it globally:

bun add -g looptop
looptop               # live TUI

Needs Bun. The CLI is dependency-free and read-mostly.

Menu-bar app

Download the signed macOS app from looptop.dev. The app can also install the looptop CLI onto your PATH from its menu.

Usage

looptop                 live TUI monitor (htop-style) — default
looptop top             same as above (explicit)
looptop ls              one-shot table of every loop
looptop status <slug>   detail for one loop (recent runs, schedule, lock)
looptop tail <slug>     follow that loop's log
looptop pause <slug>    pause a loop
looptop resume <slug>   resume a loop
looptop run <slug> [exec|maintenance]   kick a run now
looptop help            usage

TUI keys

| Key | Action | |-----|--------| | / (k / j) | move selection | | Enter ( / ) | expand / collapse the loop's recent history | | + / - | show more / fewer history events | | p | pause / resume selected loop | | e | run exec now | | m | run maintenance now | | r | force refresh | | q / Ctrl-C | quit |

The number of history events (default 8) is configurable with + / - live, or via the LOOPTOP_HISTORY environment variable.

How it discovers loops

looptop reads the loops registered on your machine via the launchd convention ~/Library/LaunchAgents/ai.<slug>.loop.exec.plist, and each loop's state from its ~/.<slug>/loop/ directory (state.json, ledger.jsonl) plus an optional loop.json manifest (see the Loop Standard). No configuration required — if your loops follow the convention, they show up.

License

See looptop.dev. The menu-bar app is a separate product.