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

@jimmy.codes/stet

v0.9.0

Published

Read-only companion TUI for inspecting an agent's changes

Readme

stet

stet is a read-only companion TUI for inspecting an agent's changes.

The agent runs in one terminal pane, but you still open an editor just to answer basic questions:

  • What files are in this repo?
  • What changed?
  • What did the agent touch most recently?
  • Are there errors or warnings in what changed?

stet is meant to sit in the next pane and answer those questions without becoming part of the agent loop. It does not review code, approve changes, talk to the agent, or manage a workflow. It shows you the repo, the diff, and the problems. You decide what to say next.

Stet is the proofreader's mark for "let it stand": strike a word out, add dots beneath, and it stays.

stet showing the repo tree beside a diff of a changed file

What it does

  • Shows the full repo tree, including tracked files and untracked files that are not ignored by git.
  • Marks changed files in place, with staged, unstaged, mixed, and untracked states.
  • Opens unchanged files read-only, with syntax highlighting for any language Shiki supports.
  • Opens changed files as diffs, with a toggle for the full file.
  • Shows an image or binary file as a metadata card (type, dimensions, size) instead of raw bytes, since a terminal can't render the pixels, and opens it in the OS default app with O.
  • Finds text within the open file, and searches file contents across the repo, scoped to the changes or the whole tree.
  • Switches scope from a picker (all changes, staged, unstaged, since launch, or the last commit) and between git worktrees in place.
  • Shows which worktree an agent is working in: the picker ranks worktrees by how recently each was touched (an edit, a commit, a checkout), busiest first, each with its age beside it.
  • Watches the filesystem and refreshes as the agent changes files, keeping the current file and selection stable.
  • Marks recent activity and lets you jump to the latest touched file.
  • Shows per-line provenance with a: a gutter rail that places each line on a five-tier timeline, uncommitted, committed this session, committed on this branch, changed since the file's start, or original to it, git blame reframed around how much of what you are reviewing is yours and how recent it is.
  • Shows diagnostics in the tree, the viewer, and a problems panel.
  • Navigates code through read-only language-server pulls: go to definition, find references, find implementations, call hierarchy, hover, and a symbol outline.
  • Copies a reference and snippet to paste back to the agent: path in the tree, path:line:col in the viewer, and a whole diagnostic (or every one) from the problems panel.

The git-backed file tree renders first. Diagnostics come in later as decorations, so the basic view stays useful even when checks are still running.

Install

# standalone binary (macOS / Linux, no runtime needed)
curl -fsSL https://raw.githubusercontent.com/jimmy-guzman/stet/main/install.sh | bash

# npm (works with npm, bun, pnpm, yarn; pulls a prebuilt binary)
npm i -g @jimmy.codes/stet

# homebrew
brew install jimmy-guzman/tap/stet

Run stet inside any git repository; stet upgrade updates it in place.

Documentation

Full documentation lives at stet.jimmy.codes:

  • Getting started: install, usage, flags, and requirements
  • Guides: reading files and diffs, search and navigation, code intelligence, scopes and worktrees, and themes
  • Keybindings: every shortcut (or press ? in the app)
  • Configuration: themes, file associations, icons, language servers, and editor setup at ~/.config/stet/config.jsonc (or config.json)

Requirements

  • git
  • a clipboard tool for copy (y): pbcopy on macOS (built in), or wl-copy, xclip, or xsel on Linux
  • a Nerd Font for the tree's file-type icons (optional; use --no-icons without one)

Development

bun install
bun run stet             # run from source (the TUI lives in packages/tui)
bun run check            # format, lint, tests, typecheck + knip
bun run build:dist       # build standalone binaries for all targets

bun install also wires up git hooks (via lefthook): pre-commit formats and lints staged files, pre-push typechecks the whole repo and runs knip.

Non-goals

stet is deliberately not an agent integration. It has no approvals, no accept/reject protocol, no generated review explanations, no PR workflow, and no database. The agent never hears from stet, only from you.