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

oh-my-toomuchtalker

v0.1.0

Published

Global dev chat feed for Claude Code statusline

Readme

oh-my-toomuchtalker

npm version License: MIT

A global shoutboard for Claude Code. See what other developers are yelling into the void — right in your statusline.

[OMC] ralph | ctx:67% | [shout] "새벽 3시 디버깅 중..." — anonymous

Get Started · How It Works · Commands · Contributing


What is this?

A shared message board that lives in your Claude Code statusline. Post a message, and every developer using toomuchtalker will see it. Think of it as a global developer chatroom, but quieter — one shout at a time.

  • Post shouts from Claude Code with natural language
  • See random shouts from other developers on your statusline
  • Check the leaderboard to see who's been talking the most

Works with or without oh-my-claudecode. If you have OMC, it chains seamlessly. If you don't, it works standalone.


Quick Start

Step 1: Install

npm install -g oh-my-toomuchtalker

Step 2: Setup

toomuchtalker setup

This will:

  • Install the HUD wrapper to your Claude Code statusline
  • Register the MCP server so Claude can use shout/say/status tools
  • Preserve your existing statusline (OMC, custom, or none)

Step 3: Shout something

Open Claude Code and say:

/tmt hello world!

That's it. Your shout is now visible to every toomuchtalker user.


How It Works

Claude Code
    |
    ├── MCP Server (tools)
    |     ├── say     →  POST /messages   →  Cloudflare Workers  →  D1
    |     ├── shout   →  GET  /messages/random
    |     └── status  →  GET  /stats
    |
    └── Statusline (HUD)
          └── wrapper.mjs
                ├── fetch /messages/random (cached 30s)
                └── chain to previous statusline (OMC, etc.)

The project has two parts:

| Component | What it does | |-----------|-------------| | MCP Server | Exposes say, shout, talker_status tools to Claude Code | | HUD Wrapper | Displays a random shout on the statusline, chaining to any existing statusline |

The backend is a Cloudflare Workers API with a D1 (SQLite) database. Zero cost, globally distributed.


MCP Tools

| Tool | Description | Example | |------|-------------|---------| | say | Post a message to the shoutboard (max 50 chars) | /tmt hello from Seoul! | | shout | Fetch a random message from the board | /tmt | | talker_status | Show total messages and top 10 leaderboard | /tmt status |

All tools are accessible through the /tmt slash command or by asking Claude directly:

"shout something on toomuchtalker" "what's on the shoutboard?" "show me the toomuchtalker leaderboard"


CLI Commands

toomuchtalker setup       # Install HUD + register MCP server
toomuchtalker status      # Check installation state
toomuchtalker uninstall   # Clean removal, restore previous statusline
toomuchtalker nick        # Set or change your display name
toomuchtalker mute        # Mute a user (hide their shouts from your statusline)
toomuchtalker unmute      # Unmute a previously muted user
toomuchtalker muted       # List all muted users

Uninstall

Clean removal with full rollback:

toomuchtalker uninstall

This restores your previous statusline exactly as it was before installation.


Compatibility

| Environment | Status | |-------------|--------| | With oh-my-claudecode | Chains after OMC output: [OMC] ... \| [shout] ... | | With other statusline | Chains after existing output | | No statusline | Shows shout only | | No internet | Gracefully shows nothing (1.5s timeout) |

The HUD wrapper is designed to never break your Claude Code session. All errors are silently swallowed, API calls have a 1.5s timeout, and results are cached for 30 seconds.


Configuration

Environment variables (optional):

| Variable | Default | Description | |----------|---------|-------------| | TOOMUCHTALKER_API_URL | https://toomuchtalker-api.toomuchtalker.workers.dev | API endpoint | | TOOMUCHTALKER_AUTHOR | anonymous | Your display name |

Set your author name in ~/.claude/settings.json:

{
  "env": {
    "TOOMUCHTALKER_AUTHOR": "yourname"
  }
}

Project Structure

oh-my-toomuchtalker/
├── src/
│   ├── index.ts              # MCP server entry point
│   ├── cli/                  # CLI (setup/uninstall/status)
│   ├── tools/                # MCP tool definitions
│   │   ├── say.ts            # Post a message
│   │   ├── shout.ts          # Get random message
│   │   └── status.ts         # Leaderboard
│   ├── hud/
│   │   ├── wrapper.mjs       # Statusline wrapper (self-contained)
│   │   └── renderer.ts       # Message formatting
│   ├── api/
│   │   ├── client.ts         # HTTP client for Workers API
│   │   └── types.ts          # TypeScript interfaces
│   └── config/
│       └── index.ts          # Config with Zod validation
├── worker/                   # Cloudflare Workers backend
│   ├── src/
│   │   ├── index.ts          # Workers entry point
│   │   └── routes/           # API route handlers
│   ├── schema.sql            # D1 database schema
│   └── wrangler.toml         # Cloudflare config
├── package.json
├── tsconfig.json
└── vitest.config.ts

Contributing

# Clone
git clone https://github.com/caraxes/oh-my-toomuchtalker.git
cd oh-my-toomuchtalker

# Install deps
npm install
cd worker && npm install && cd ..

# Build
npm run build

# Run MCP server locally
npm start

# Deploy backend (requires Cloudflare account)
cd worker && npm run deploy

Tech Stack

| Layer | Tech | |-------|------| | Language | TypeScript (ESM) | | Runtime | Node.js >= 20 | | Build | tsc (no bundler) | | Test | Vitest | | Backend | Cloudflare Workers + D1 | | Validation | Zod | | MCP | @modelcontextprotocol/sdk |


Requirements

  • Claude Code CLI installed
  • Node.js >= 20
  • That's it.

License

MIT


Built for developers who have something to say between deploys.