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

@agent-dump/cli

v0.10.0

Published

Standalone native binaries for agent-dump, runnable via bunx or npx.

Readme

@agent-dump/cli

Native agent-dump binaries for bunx and npx.

The package downloads the matching native binary for the current platform during installation and verifies it against the published checksum manifest before exposing agent-dump.

bunx @agent-dump/cli --help
npx @agent-dump/cli --help

Supported targets:

  • darwin-x64
  • darwin-arm64
  • linux-x64
  • win32-x64

Installation

# Via bunx (no installation)
bunx @agent-dump/cli --help

# Via npx (no installation)
npx @agent-dump/cli --help

# Global install
npm install -g @agent-dump/cli
agent-dump --help

Usage

Interactive export

agent-dump --interactive
agent-dump --interactive -days 3

List sessions

agent-dump --list
agent-dump --list -days 7
agent-dump --list -query error

URI direct dump

agent-dump opencode://<session-id>
agent-dump codex://<session-id>
agent-dump codex://threads/<session-id>
agent-dump kimi://<session-id>
agent-dump claude://<session-id>
agent-dump cursor://<request-id>
agent-dump pi://<session-id>
agent-dump codex://<session-id> --head

Statistics

agent-dump --stats
agent-dump --stats -days 30

Search

agent-dump --search "auth timeout"
agent-dump --search "auth" --list -days 30
agent-dump --reindex

Collect (AI summary by date range)

agent-dump --collect
agent-dump --collect -since 2026-04-01 -until 2026-04-15
agent-dump --collect --collect-mode insight
agent-dump --collect --dry-run --save ./reports
agent-dump --collect --save ./reports

Config

agent-dump --config view
agent-dump --config edit

Supported URI schemes

  • opencode://<session_id> - OpenCode sessions
  • codex://<session_id> - Codex sessions
  • codex://threads/<session_id> - Codex sessions
  • kimi://<session_id> - Kimi sessions
  • claude://<session_id> - Claude Code sessions
  • cursor://<requestid> - Cursor sessions
  • pi://<session_id> - Pi sessions

Key features

  • Multi-agent support: Scan and export sessions from OpenCode, Claude Code, Codex, Kimi, Cursor, and Pi
  • Interactive selection: Friendly CLI selector with time-based grouping
  • URI direct access: View or export any session by its URI without searching
  • Head metadata: --head prints lightweight URI metadata for discovery
  • Statistics: --stats shows session counts and message counts grouped by agent and time
  • AI collect: --collect summarizes sessions over a date range using your configured LLM, with pm and insight modes
  • Collect dry-run: --collect --dry-run previews provider breakdown, session/chunk counts, concurrency, and save path
  • Full-text search: --search uses local SQLite FTS5 with ranked results and highlighted snippets
  • Structured queries: provider:, role:, path:, limit: filters in -query
  • Scoped queries: agents://<path>?q=keyword&providers=codex,claude for repo-scoped searches
  • Multi-format export: --format json,markdown,raw,print with md alias for markdown
  • Config-driven: ~/.config/agent-dump/config.toml for AI provider, shortcuts, and agent deny-lists

Documentation

Full documentation and Python source: xingkaixin/agent-dump.