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

agy-understudy

v0.1.0

Published

Understudy — a live cockpit for the AI coding agents you delegate to Google Antigravity (agy/Gemini).

Readme

Understudy

A live cockpit for the AI coding agents you delegate to Google Antigravity (agy / Gemini). Offload the grunt work to a cheap model, watch it work in plain language, and save your premium model budget for the hard thinking.

Why

Premium coding-model budgets run out fast, and rate limits bite. Google Antigravity / Gemini agents are cheap with generous limits — but they run headless and you can't see what they're doing. Understudy makes delegating to the cheap model safe and visible: hand off routine implementation, watch every step, and keep your premium model for what actually needs it. Smart routing, not magic.

Quickstart

Give Antigravity a bounded task and watch it work:

mkdir -p ~/agy-sandbox/my-task
echo "Add a /health endpoint to server.js and a test for it" > ~/agy-sandbox/my-task/prompt.md

npx agy-understudy run --dir ~/agy-sandbox/my-task --prompt ~/agy-sandbox/my-task/prompt.md

Then open the cockpit — in another terminal, or any time after the fact:

npx agy-understudy

It opens at http://127.0.0.1:4288 and streams what each run is doing, live.

What you see

  • A live activity strip: reading / exploring / planning / writing code / testing / question / done.
  • An Explanation tab: a step-by-step timeline plus a "how Antigravity works" primer.
  • The prompt it was given and the files it produced.

Understudy shows the runs you start through it (understudy run is what records the log and the run manifest it reads). It is a cockpit for delegated work, not a general-purpose tail of everything agy has ever done on your machine.

Requirements

Configuration

  • --root <dir> / UNDERSTUDY_ROOT — where runs live (default ~/agy-sandbox).
  • --port <n> / UNDERSTUDY_PORT — cockpit port (default 4288).

How it works

One Node process serves the cockpit UI and a small API that reads the run directories under your root. The "what is it doing?" explanation comes from a deterministic local parser — no LLM, no network call, no telemetry. A watchdog protects delegated runs (6-minute limit, 90-second stall kill) and terminates the whole process group so nothing is orphaned.

The server binds to 127.0.0.1 only, answers GET only, and never writes to your run directories. See SECURITY.md.

Contributing

Issues and PRs are welcome — see CONTRIBUTING.md.

License

MIT — see LICENSE.


Understudy is an independent open-source project. It is not affiliated with, endorsed by, or sponsored by Google. "Antigravity" and "Gemini" are trademarks of Google LLC.