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

claude-chat-namer

v1.0.0

Published

Claude Code plugin: name, search, and resume your conversations. No more UUID chaos.

Readme

claude-chat-namer

Claude Code plugin that names, searches, and helps you resume your conversations. No more UUID chaos.

Claude Code stores conversations as UUID-named .jsonl files. This plugin auto-names them, lets you search/rename, and makes claude --resume actually usable.

Install

As Claude Code Plugin

git clone https://github.com/Jamaalx/claude-chat-namer.git
claude --plugin-dir ./claude-chat-namer

As standalone CLI

npx claude-chat-namer

Or install globally:

npm install -g claude-chat-namer
claude-chat-namer list

Features

Auto-Naming (Hook)

The plugin includes a Stop hook that automatically names every conversation after the first exchange. Names are generated from the first user message. No configuration needed - just install and forget.

Slash Commands (inside Claude Code)

| Command | Description | |---------|-------------| | /chat-namer:list | List all conversations with names | | /chat-namer:search <query> | Search conversations by keyword | | /chat-namer:rename | Rename a conversation | | /chat-namer:resume <query> | Find a conversation and get the claude --resume command | | /chat-namer:auto-name | Auto-name all unnamed conversations at once |

Resume Helper

Instead of scrolling through UUIDs, find any conversation by keyword:

> /chat-namer:resume wolt

Found 4 conversations matching "wolt":

  1. [named] Wolt Automation - Camoufox
     Mar 19 | 1088 msgs | c348d36f...

  2. [named] Implement Wolt Purchases plan...
     Feb 18 | 361 msgs | c0e56e5c...

Run in a new terminal:
  claude --resume c348d36f-8002-40ca-8523-17821d6a0bea

CLI Usage

claude-chat-namer              # Interactive mode (browse + rename)
claude-chat-namer list          # List all conversations
claude-chat-namer search "wolt" # Search by keyword
claude-chat-namer name c348 "Wolt Automation"  # Name by UUID prefix
claude-chat-namer unname c348   # Remove a name
claude-chat-namer auto          # Auto-name all unnamed
claude-chat-namer help          # Show all commands

How it Works

  1. Scans ~/.claude/projects/ for conversation .jsonl files
  2. Reads the first user message to generate auto-names
  3. Stores names in a chat-names.json file (per project directory)
  4. Never modifies conversation files - names are separate metadata

Plugin Structure

claude-chat-namer/
├── .claude-plugin/
│   └── plugin.json           # Plugin manifest
├── skills/
│   ├── list/SKILL.md         # /chat-namer:list
│   ├── search/SKILL.md       # /chat-namer:search
│   ├── rename/SKILL.md       # /chat-namer:rename
│   ├── resume/SKILL.md       # /chat-namer:resume
│   └── auto-name/SKILL.md    # /chat-namer:auto-name
├── hooks/
│   └── hooks.json            # Stop hook for auto-naming
├── scripts/
│   ├── index.js              # Core API
│   ├── cli.js                # CLI interface
│   └── hook-auto-name.js     # Hook script
├── package.json
└── README.md

Zero Dependencies

Uses only Node.js built-ins (fs, path, os, readline). No npm install needed.

License

MIT