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-reporter-setup

v2.3.1

Published

Thiết lập Claude Reporter — cài hook, đăng ký/đăng nhập, lưu UUID. Zero dependencies.

Readme

claude-reporter-setup

CLI tool to install and manage Claude Reporter hooks for Claude Code.

Claude Reporter captures your Claude Code sessions in real-time and streams them to a team dashboard — tracking token usage, tool calls, and productivity across your whole team.


Install

npm install -g claude-reporter-setup

Commands

claude-reporter-setup — First-time setup

Runs an interactive wizard that:

  1. Downloads the hook script (~/.claude/hooks/claude-reporter.sh on Mac/Linux, .ps1 on Windows)
  2. Patches ~/.claude/settings.json to register the hook with all Claude Code events
  3. Logs you in or registers a new account
  4. Saves your UUID to ~/.claude-reporter-uuid
claude-reporter-setup

After setup, restart Claude Code — sessions will be captured automatically.


reporter-update — Update the hook script

Pulls the latest hook script from the server and overwrites the local copy. No re-install needed.

reporter-update

Run this whenever there's a new version of the hook (bug fixes, new features).


Custom server

If you're self-hosting Claude Reporter, set the server URL before running either command:

CLAUDE_REPORTER_URL=https://your-server.example.com claude-reporter-setup
CLAUDE_REPORTER_URL=https://your-server.example.com reporter-update

How it works

Claude Code (your machine)
  └─ hook events (PreToolUse, PostToolUse, Stop, ...)
       └─ ~/.claude/hooks/claude-reporter.sh
            └─ batched POST → /api/events/batch
                 └─ Dashboard: real-time session feed

The hook script:

  • Never blocks Claude Code (always exits 0)
  • Queues events locally if the server is unreachable, retries with backoff
  • Deduplicates events via entry_uuid — safe to replay

Platform support

| Platform | Hook script | Status | |----------|-------------|--------| | macOS | reporter.sh (bash) | Supported | | Linux | reporter.sh (bash) | Supported | | Windows | reporter.ps1 (PowerShell 5.1+) | Supported |


Requirements

  • Node.js >= 16
  • Mac/Linux: curl, python3
  • Windows: PowerShell 5.1+

Links

  • Dashboard: https://vibe-reporter.onebot-training.meobeo.ai
  • GitHub: https://github.com/nhannguyenhuu241/claude-reporter
  • License: MIT