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

@juicerq/bankai

v0.0.10

Published

Terminal cockpit for live Claude Code, Codex, and Pi sessions, with turn-by-turn code review — openTUI + Bun + JSON store

Readme

bankai

A terminal cockpit for interactive Claude Code, Codex, and Pi sessions, with a turn-by-turn code-review layer for judging what the agents write.

Built for a workflow where you don't write code by hand — your job shifts from writing to reviewing, and the unit you review is the agent turn, not a git working-tree diff. See PROJECT.md for the full product rationale.

What it does

  • Command center — a rail of your projects; each project hosts tabbed, real terminals where you run claude, Codex, or Pi yourself. bankai watches the terminal foreground through /proc to bind it to the interactive Harness Session. Non-interactive Harness modes are excluded.
  • Review — a tmux-style leader (^X then a key; r enters review) takes over the screen with a dense, scoped reading layout: a rail of the session's turns and the full readable diffs for the selected turn. Turns arrive live from each Harness Transcript; only structured file changes attributed by that Transcript become Diffs.

Stack

  • openTUI (@opentui/core + @opentui/react) on Bun — a single terminal process, React 19 reconciling over terminal renderables
  • @xterm/headless for the PTY tabs
  • tree-sitter (WASM) for syntax highlighting in diffs
  • Atomic JSON store on disk (XDG data dir)
  • Arktype for boundary validation
  • Vitest for tests; lobomfz-check (tsgo + oxlint + jscpd + knip) for the typecheck/lint gate

Commands

bun install
bun run dev     # TUI with --watch (src/index.tsx)
bun run check   # typecheck + lint gate
bun run test    # vitest
bun run build   # production executable

# One-time setup for live Pi Session binding and Review capture
bankai setup pi

Structure

src/
  index.tsx       entry point
  core/           domain logic, no TUI
    harness/      built-in Harness identities and capabilities
    session/      bind terminal foreground to an interactive Session through /proc
    review/       persistent Transcript projection, turn model, diff, accumulation
    terminal/     PTY tab supervisor (xterm headless)
    workspace/    project/tab runtime, restore planning, and persistence
    highlight/    tree-sitter syntax highlighting
    store/        atomic JSON store
  ui/             openTUI React — components, hooks (-utils), theme
tests/            vitest

Domain glossary lives in CONTEXT.md; UI conventions in src/ui/AGENTS.md.