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

@wooters/crabcallr

v0.5.0

Published

OpenClaw plugin for CrabCallr voice interface - talk to OpenClaw via phone or browser

Downloads

819

Readme

CrabCallr Plugin for OpenClaw

Talk to your OpenClaw assistant via phone or browser with CrabCallr.

Overview

CrabCallr is a voice interface that lets you have natural conversations with your OpenClaw assistant. This plugin connects your OpenClaw instance to the CrabCallr hosted service, enabling:

  • Browser calling - Talk to OpenClaw from any web browser via WebRTC
  • Phone calling - Call a phone number to reach your assistant (Basic tier)
  • Streaming speech recognition - Real-time transcription with Deepgram
  • Natural voice responses - High-quality text-to-speech with ElevenLabs
  • Barge-in support - Interrupt the assistant mid-response

Installation

openclaw plugins install @wooters/crabcallr

Setup

  1. Get an API key - Sign up at app.crabcallr.com and generate an API key

  2. Configure the plugin - Add to your ~/.openclaw/openclaw.json:

    {
      "channels": {
        "crabcallr": {
          "accounts": {
            "default": {
              "apiKey": "cc_your_api_key_here"
            }
          }
        }
      }
    }
  3. Restart OpenClaw Gateway - The plugin will automatically connect to the CrabCallr service

  4. Start calling - Visit app.crabcallr.com and click "Call" to talk to your assistant

Configuration Options

| Option | Type | Default | Description | | ---------------------- | ------- | ------------------------------- | -------------------------------------- | | apiKey | string | (required) | Your CrabCallr API key | | serviceUrl | string | wss://ws.crabcallr.com/plugin | WebSocket URL for the service | | autoConnect | boolean | true | Connect automatically on startup | | reconnectInterval | number | 5000 | Reconnection interval in ms | | maxReconnectAttempts | number | 10 | Max reconnect attempts (0 = unlimited) |

CLI Commands

Check connection status:

openclaw channels status --probe

How It Works

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│   Your Phone    │────▶│  CrabCallr      │────▶│   Your         │
│   or Browser    │◀────│  Service        │◀────│   OpenClaw     │
└─────────────────┘     └─────────────────┘     └─────────────────┘
        │                       │                       │
        │  Audio/WebRTC         │  WebSocket            │  Messages
        │                       │                       │
    You speak             Transcribed text        OpenClaw responds
    You hear              Response audio          via this plugin
  1. You speak into your phone or browser
  2. CrabCallr transcribes your speech in real-time (Deepgram)
  3. The transcript is sent to your OpenClaw via this plugin
  4. OpenClaw processes your request and generates a response
  5. The response is sent back to CrabCallr
  6. CrabCallr converts the response to speech (ElevenLabs)
  7. You hear the response

Voice Skill

This plugin includes a voice skill that automatically adapts OpenClaw's responses for spoken conversation:

  • Concise, conversational responses (1-3 sentences)
  • No bullet points, markdown, or code blocks
  • Natural speech patterns with contractions
  • Graceful handling of interruptions

The skill is automatically loaded when the plugin is enabled.

Pricing

  • Free tier - 30 min/month browser calling via WebRTC
  • Basic tier ($5/month) - 120 min browser + 30 min phone calling, $0.15/minute overage

See crabcallr.com for current pricing.

Troubleshooting

Plugin won't connect

  • Verify your API key is correct (should start with cc_)
  • Check that your OpenClaw Gateway can reach ws.crabcallr.com
  • Run openclaw channels status --probe to see connection details

No response from assistant

  • Ensure your OpenClaw agent is configured and working
  • Check OpenClaw logs for errors processing messages

Poor audio quality

  • Use a quiet environment or headphones
  • Browser calling typically has better quality than phone

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

License

MIT