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

walkietalkiebot

v0.3.8

Published

Walkie Talkie Bot — a voice-first AI assistant for Claude Code. Use as a Claude Code plugin (30 MCP tools + 5 skills, offline SQLite) or full server (web UI, 6 retro themes, voice, Telegram)

Downloads

637

Readme

Walkie Talkie Bot

npm version npm downloads

A walkie talkie for Claude. Your voice is the interface.

Website: walkietalkie.bot -- Docs: walkietalkie.bot/docs

Install

Two ways to use Walkie Talkie Bot. Pick one (or both).

Plugin (recommended)

Add Walkie Talkie Bot as a Claude Code plugin for 30 MCP tools + 5 skills, no server required. Data tools talk directly to SQLite.

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "wtb": {
      "command": "npx",
      "args": ["wtb-mcp"]
    }
  }
}

Full Install

The full server gives you the web UI, voice interface, Telegram bot, and everything.

npx walkietalkiebot

This starts the server and opens http://localhost:5173 in your browser.

Requires Chrome or Edge for voice (Web Speech API).

What You Get

Plugin

  • 15 data tools -- conversations, messages, plans, search, liner notes, export. Always work via direct SQLite, no server needed.
  • 15 server tools -- voice, IPC, sessions, jobs, image analysis, browser control. Require the Walkie Talkie Bot server to be running.
  • 5 skills -- save-conversation, search-tapes, manage-plans, launch-voice, export-tape.

Full Install

Everything above, plus:

  • Web UI with 6 retro themes and cassette tape metaphor
  • Push-to-talk, wake word ("hey talkie"), and continuous listening
  • Streaming text-to-speech with selectable system voices
  • Animated robot avatar with 6 states
  • Real-time activity feed for Claude Code tool calls
  • Automatic plan detection and management
  • Per-conversation liner notes
  • Full-text search across all conversations (Cmd+K)
  • Background job execution with SSE streaming
  • Telegram bot integration
  • Image drag-and-drop with Claude vision analysis
  • Markdown and JSON export

Themes

Six fully themed visual experiences. Every UI element reskins -- headers, chat bubbles, conversation cards, viewport borders, modals, and the robot avatar.

| Theme | Internal Name | Vibe | |-------|--------------|------| | TalkBoy | mccallister | Silver cassette recorder with chunky buttons and red accents | | Bubble | imessage | Minimal and polished, inspired by modern Apple interfaces | | Dial-Up | aol | Beveled gray panels and buddy list energy from the 90s internet | | Finder | classic-mac | The elegant gray desktop of classic Mac OS (System 7/8/9) | | Guestbook | geocities | Neon text on dark backgrounds, like a 90s homepage under construction | | 1984 | apple-1984 | Rainbow Apple warmth from the original Macintosh era |

Switch themes via the header button or settings drawer.

MCP Tools

Data Tools (offline)

Work directly against SQLite at ~/.wtb/wtb.db. No server needed.

| Tool | Description | |------|-------------| | list_conversations | List all saved conversations with pagination | | get_conversation | Get full conversation with messages, images, and activities | | create_conversation | Create a new conversation (cassette tape) | | rename_conversation | Rename an existing conversation | | delete_conversation | Delete a conversation permanently | | search_conversations | Full-text search (FTS5) across all conversations | | add_message | Add a message to a conversation | | list_plans | List all plans | | get_plan | Get plan by ID with full content | | create_plan | Create a plan (draft/approved/in_progress/completed/archived) | | update_plan | Update plan title, content, or status | | delete_plan | Delete a plan | | get_liner_notes | Get per-conversation markdown notes | | set_liner_notes | Set or clear liner notes | | export_conversation | Export as markdown or JSON |

Server Tools (requires server)

Require the Walkie Talkie Bot server to be running (npx walkietalkiebot).

| Tool | Description | |------|-------------| | launch_wtb | Start server and open browser | | get_wtb_status | Check running status and avatar state | | get_transcript | Get latest voice transcript | | get_conversation_history | Get current tape's conversation messages | | get_claude_session | Get connected session ID | | set_claude_session | Connect to a Claude Code session | | disconnect_claude_session | Disconnect session | | get_pending_message | Poll for user messages (IPC mode) | | respond_to_wtb | Send response to user (IPC mode) | | update_wtb_state | Set avatar state and transcript | | analyze_image | Analyze image via Claude vision | | open_url | Open URL in default browser | | create_wtb_job | Create background async job | | get_wtb_job | Get job status and result | | list_wtb_jobs | List jobs by status |

Skills

| Skill | Description | |-------|-------------| | save-conversation | Save the current conversation as a cassette tape | | search-tapes | Search across all saved tapes | | manage-plans | Create, update, and track plans | | launch-voice | Start the voice interface | | export-tape | Export a conversation to markdown or JSON |

Configuration

Set WTB_PORT to change the default port (5173).

Server management:

wtb-server start [-f]    # Start (background or foreground)
wtb-server stop           # Stop
wtb-server status         # Show status
wtb-server logs [-f]      # View logs
wtb-server install        # Install as macOS launchd daemon

Telegram bot: Create a bot via @BotFather, then set TELEGRAM_BOT_TOKEN or save to ~/.wtb/telegram.token. The bot starts automatically with the server.

Development

npm install       # Install dependencies
npm run dev       # Vite dev server (frontend only)
npm run build     # TypeScript check + Vite build + server bundle + MCP server
npm run test      # Run all tests (140 tests across 10 files)

The frontend is decomposed into custom hooks (src/hooks/) for voice I/O, Claude chat, keyboard control, FAB dragging, image analysis, and server sync. The server has full test coverage for all database repositories and HTTP API endpoints.

Full architecture, API reference, and integration guides at walkietalkie.bot/docs.

License

MIT