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

goatai-cli

v0.1.10

Published

GOAT CLI — set up repo-level or global capture of your AI coding sessions (Claude Code, Codex, Cursor, Antigravity) and sync them to GOAT. Run via `npx goatai-cli`.

Readme

goatai-cli

The GOAT CLI — set up capture of your AI coding sessions (Claude Code, Codex, Cursor, Antigravity) and sync them to GOAT. No install needed; run it with your package manager's dlx.

Run it with the runner that matches your repo's package manager. npx hangs inside a pnpm or yarn project (npm's resolver chokes on their symlinked node_modules), so use pnpm dlx / yarn dlx there. Or skip Node entirely with the curl installer below.

Repo-level (a team / a repo)

Commit capture config so every teammate using an AI tool in this repo is captured to the project — a PUBLIC slug is committed (no secret), so it's safe on public repos:

pnpm dlx goatai-cli init --repo --slug <slug>   # pnpm repo
npx -y    goatai-cli init --repo --slug <slug>   # npm repo
yarn dlx  goatai-cli init --repo --slug <slug>   # yarn repo

(<slug> is the project slug from your GOAT dashboard — use it as-is; it may or may not contain a /.)

This writes .goat/ (a reviewable Python forwarder + a tiny bootstrap) and the per-tool hook configs, then git add -fs them. Teammates need no Node and no install — the committed forwarder is pure-Python (with a pinned Go fallback). Commit the files; capture begins on each teammate's next turn (after the tool's one-time trust prompt).

Prefer no Node at all for the install? curl -fsSL https://goat.ai/repo-install.sh | bash -s -- <slug> writes the exact same config. And if you're driving an AI agent, just point it at https://goat.ai/llms.txt — it writes the files for you (no installer to run).

Global (your own machine)

pnpm dlx goatai-cli login          # browser sign-in (token never printed) — or npx -y / yarn dlx
pnpm dlx goatai-cli init --global  # hooks that capture YOUR own sessions

Other commands

  • goatai-cli watch — a per-machine daemon that captures from all four tools by reading their on-disk session files (vendor-proof; the durable path for tools whose committed hooks are gated).
  • goatai-cli login --device — device-code sign-in (no loopback) → attributes repo captures to your account.

Privacy

Read-only by default. The committed config carries a public slug, never a secret. Pin the version in CI (pnpm dlx goatai-cli@<version>), never @latest.

MIT licensed. © GOAT.