JSPM

ring-a-ding-cli

0.2.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 24
  • Score
    100M100P100Q84826F

OpenClaw-ready CLI for Ring-a-Ding AI phone calls

Package Exports

  • ring-a-ding-cli
  • ring-a-ding-cli/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ring-a-ding-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Ring-a-Ding CLI

ring-a-ding-cli installs the rad command used by the public ring-a-ding OpenClaw skill.

What You Need

Before you can make calls, you need:

  1. A Ring-a-Ding API key from ringading.ai/account
  2. Your own OpenAI API key from platform.openai.com/api-keys

Ring-a-Ding is the telephony service. Your OpenAI key powers the voice agent.

OpenClaw Install

  1. Install the CLI:
npm install -g ring-a-ding-cli
  1. Install the OpenClaw skill:
openclaw skills install ring-a-ding
  1. Check what is still missing:
openclaw skills check
  1. Add your keys to ~/.openclaw/openclaw.json:
{
  "skills": {
    "entries": {
      "ring-a-ding": {
        "enabled": true,
        "apiKey": "rad_live_...",
        "env": {
          "OPENAI_API_KEY": "sk-..."
        }
      }
    }
  }
}
  1. Start a fresh OpenClaw session.

  2. Test with this prompt:

Use the ring-a-ding skill to call the best pizza place around me and order delivery.

Optional CLI Setup

If you want to use rad directly outside OpenClaw, save your keys locally:

rad init

That stores config in ~/.config/ring-a-ding/config.json.

Docs