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

codenanny

v0.4.0

Published

Local index of every Claude Code session: searchable timeline, paste-ready resume bundles for disconnects, and a disk reconciler that answers "which session built this folder?". MIT, runs locally, no cloud.

Readme

codenanny

Find which Claude Code session built that abandoned folder. Resume disconnected sessions with one paste. Local, MIT, no cloud.

npm license: MIT

Codenanny watches your local Claude Code transcripts and turns them into a navigable index of every session — every prompt, every file Claude wrote, edited, or read, and every file-creating Bash command (cat>, tee, mkdir, etc.) — so you can:

  • Resume a disconnected session with one click. Paste-ready markdown bundle with the last N turns + files created/edited + files read for context.
  • Find which session built a folder. Paste a disk path, see the sessions that touched files in it, ranked by recency, with action chips (✏️ edit ×10, 👁️ read ×6, $→ bash-write ×2).
  • See what a session actually did. A unified timeline interleaves prompts and file ops in conversation order. No more "what was I doing here?"

Runs entirely on your machine. No inference, no cloud, no account. The transcript data already lives in ~/.claude/projects/; codenanny just makes it queryable.

Install

npm install -g codenanny

Requires Node 20+.

Quick start

codenanny serve
# → indexing ~/.claude/projects/ ...
# → live at http://localhost:7700

Open the URL. Four views in the sidebar:

  • Sessions — every session, newest first. Click one for the timeline.
  • Media — every file op across every session.
  • Projects — group sessions by working directory.
  • Find — paste a disk path (e.g. /home/me/projects/old-thing/) to see which sessions touched files in it.

The 📋 Resume button on the session header copies a paste-ready bundle to your clipboard. Drop it into a new Claude session and continue from where you left off.

CLI

codenanny serve                        # live web UI (default port 7700)
codenanny ingest                       # one-shot index, no server
codenanny export                       # static HTML+JSON bundle
codenanny resume <session-id> --copy   # resume bundle to clipboard via OSC52
codenanny wizard                       # browser-based setup
codenanny help                         # full options

Common flags:

codenanny serve --port 7700 --db ./codenanny.db --src ~/.claude/projects --watch
codenanny resume <id> --turns 10 --json

How it works

  • Walks ~/.claude/projects/*.jsonl (Claude Code's transcript directory).
  • For each session: extracts user + assistant turns, every tool_use block (Write, Edit, MultiEdit, NotebookEdit, Read), and heuristically extracts file paths from Bash commands (>, >>, tee, mkdir, touch, cp, mv).
  • Stores in a local sqlite + FTS5 database. Watches for new transcripts via chokidar with a 750ms debounce.
  • Exposes a JSON HTTP API + a vanilla-JS UI (no framework). The UI subscribes to a server-sent-events stream for live updates.

What's coming

  • Multi-agent adapters: Gemini CLI, Codex CLI, Aider.
  • Topic-based session clustering (group sessions by intent, not just by working directory).
  • Daemon mode polish: start/stop/status, browser-open, systemd/launchd templates.
  • Opt-in multi-user mode (users table already exists).

Links

  • Source + issues: https://github.com/nobleglitch/codenanny
  • Core library (for plugkit hosts): @codenanny/core

License

MIT. Created by nobleglitch.