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

codbash-app

v7.5.1

Published

Dashboard + CLI for AI coding agents — Claude Code, Codex, Cursor, OpenCode, Kiro. View, search, resume, convert, sync sessions.

Readme

Codbash

Control room for AI coding sessions. Search, replay, and resume Claude Code, Codex, Qwen, Pi, Oh My Pi, Cursor, OpenCode, Kiro, Kilo, and Copilot Chat sessions without digging through scattered logs.

Russian / Русский | Chinese / 中文

https://github.com/user-attachments/assets/15c45659-365b-49f8-86a3-9005fa155ca6

npm Node License Zero deps

Quick Start

npm i -g codbash-app
codbash run

Supported Agents

| Agent | Sessions | Preview | Search | Live Status | Convert | Handoff | Launch | |-------|----------|---------|--------|-------------|---------|---------|--------| | Claude Code | JSONL | Yes | Yes | Yes | Yes | Yes | Terminal / cmux | | Codex CLI | JSONL | Yes | Yes | Yes | Yes | Yes | Terminal | | Pi | JSONL | Yes | Yes | Yes | - | Yes | Terminal | | Oh My Pi | JSONL | Yes | Yes | Yes | - | Yes | Terminal | | Cursor | JSONL | Yes | Yes | Yes | - | Yes | Open in Cursor | | OpenCode | SQLite | Yes | Yes | Yes | - | Yes | Terminal | | Kiro CLI | SQLite | Yes | Yes | Yes | - | Yes | Terminal | | Copilot Chat | JSON/JSONL | Yes | Yes | - | - | Yes | - |

Also detects Claude Code running inside Cursor (via claude-vscode entrypoint).

Features

Browser Dashboard

  • Grid and List view with project grouping
  • Trigram fuzzy search + full-text deep search across all supported message logs
  • Filter by agent, tags, date range
  • Star/pin sessions, tag with labels
  • GitHub-style SVG activity heatmap with streak stats
  • Session Replay with timeline slider and play/pause
  • Hover preview + expandable cards
  • Themes: Dark, Light, System

Live Monitoring

  • LIVE/WAITING badges for terminal-launched agents when their processes can be matched
  • Animated border on active session cards
  • Running view with CPU, Memory, PID, Uptime
  • Focus Terminal / Open in Cursor buttons
  • Polling every 5 seconds

Cost Analytics

  • Real cost from actual token usage when agents record usage (input, output, cache)
  • Per-model pricing: Opus, Sonnet, Haiku, Codex, GPT-5
  • Daily cost chart, cost by project, most expensive sessions

Cross-Agent

  • Convert sessions between Claude Code, Codex, and Qwen formats
  • Handoff: generate context document from any session with readable messages
  • Install Agents: one-click install commands for supported agent CLIs

CLI

codbash run [--port=N] [--no-browser]
codbash search <query>
codbash show <session-id>
codbash handoff <id> [target] [--verbosity=full] [--out=file.md]
codbash convert <id> claude|codex|qwen
codbash list [limit]
codbash stats
codbash export [file.tar.gz]
codbash import <file.tar.gz>
codbash update
codbash restart
codbash stop

Keyboard Shortcuts: / search, j/k navigate, Enter open, x star, d delete, s select, g group, r refresh, Esc close

Data Sources

~/.claude/                              Claude Code sessions + PID tracking
~/.codex/                               Codex CLI sessions
~/.cursor/projects/*/agent-transcripts/ Cursor agent sessions
~/.pi/agent/sessions/**/*.jsonl         Pi coding-agent sessions
~/.omp/agent/sessions/**/*.jsonl        Oh My Pi coding-agent sessions
~/.local/share/opencode/opencode.db     OpenCode (SQLite)
~/Library/Application Support/kiro-cli/ Kiro CLI (SQLite)
<vscode-user-data>/workspaceStorage/    Copilot Chat (JSON/JSONL)
  # Linux:   ~/.config/Code
  # macOS:   ~/Library/Application Support/Code
  # Windows: %APPDATA%\Code

Zero dependencies. Everything runs on localhost.

Install Agents

curl -fsSL https://claude.ai/install.sh | bash          # Claude Code
npm i -g @openai/codex                                   # Codex CLI
curl -fsSL https://cli.kiro.dev/install | bash           # Kiro CLI
npm i -g @earendil-works/pi-coding-agent                 # Pi
curl -fsSL https://omp.sh/install | sh                    # Oh My Pi
bun install -g @oh-my-pi/pi-coding-agent                  # Oh My Pi (Bun)
curl -fsSL https://opencode.ai/install | bash            # OpenCode

Requirements

  • Node.js >= 18
  • At least one AI coding agent installed
  • macOS / Linux / Windows

Contributing

main is protected. All changes go through feature branches and pull requests.

git checkout -b fix/my-fix
# make changes
git push -u origin fix/my-fix
gh pr create
  • Branch naming: feat/, fix/, chore/, release/
  • 1 approval required to merge
  • Keep PRs small and focused

See ARCHITECTURE.md for codebase details.

License

MIT