← 返回
数据分析 Key 中文

Ringg Voice Agent

Integrate Ringg AI voice agents with OpenClaw for making, receiving, and managing phone calls powered by Ringg's Voice OS. Use this skill when the user wants to: (1) make outbound voice calls via Ringg AI agents, (2) trigger Ringg AI campaigns from OpenClaw, (3) check call status or retrieve call history/analytics from Ringg, (4) manage Ringg AI assistants (list, create, update), (5) connect OpenClaw to Ringg's voice platform for automated phone interactions like lead qualification, feedback col
将 Ringg AI 语音代理集成至 OpenClaw,利用 Ringg Voice OS 实现 AI 电话的拨打、接听与管理。适用于:通过 Ringg AI 拨出电话、发起活动、查询通话状态与分析、管理 AI 助手、以及设置自动化语音交互(如线索筛选、预约提醒)。涉及“Ringg”、“语音通话”或“Ringg 活动”等关键词时触发。
siddharthpilani
数据分析 clawhub v1.0.0 1 版本 99774.6 Key: 需要
★ 2
Stars
📥 1,731
下载
💾 26
安装
1
版本
#latest

概述

Ringg Voice Agent Skill for OpenClaw

This skill connects OpenClaw to Ringg AI — a Voice OS for enterprises

that provides low-latency (<337ms), multilingual (20+ languages) AI voice agents for phone

interactions including lead qualification, feedback collection, confirmations, and more.

Prerequisites

  • A Ringg AI account with API access
  • RINGG_API_KEY environment variable set (obtain from Ringg AI dashboard)
  • RINGG_WORKSPACE_ID environment variable set
  • Optional: RINGG_DEFAULT_ASSISTANT_ID for a default voice agent
  • Optional: RINGG_DEFAULT_FROM_NUMBER for outbound calls

Configuration

Add to openclaw.json under skills.entries:

{
  "skills": {
    "entries": {
      "ringg-voice-agent": {
        "enabled": true,
        "apiKey": "RINGG_API_KEY",
        "env": {
          "RINGG_API_KEY": "<your-ringg-api-key>",
          "RINGG_WORKSPACE_ID": "<your-workspace-id>",
          "RINGG_DEFAULT_ASSISTANT_ID": "<optional-default-assistant-id>",
          "RINGG_DEFAULT_FROM_NUMBER": "<optional-default-number>"
        }
      }
    }
  }
}

Available Actions

1. Make an Outbound Call

Initiate a call from a Ringg AI assistant to a phone number.

# Basic outbound call
curl -X POST "https://api.ringg.ai/v1/calls/outbound" \
  -H "Authorization: Bearer $RINGG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "assistant_id": "<assistant-id>",
    "to_number": "+919876543210",
    "from_number": "+918001234567",
    "dynamic_variables": {
      "customer_name": "Rahul",
      "order_id": "ORD-12345"
    }
  }'

Parameters:

  • assistant_id — ID of the Ringg voice agent to use (falls back to RINGG_DEFAULT_ASSISTANT_ID)
  • to_number — Destination phone number in E.164 format
  • from_number — Caller ID number (falls back to RINGG_DEFAULT_FROM_NUMBER)
  • dynamic_variables — Key-value pairs passed into the agent's conversation context

When the user says "call +91XXXXXXXXXX" or "make a call to [name/number]", use this action.

If no assistant_id is specified, use RINGG_DEFAULT_ASSISTANT_ID. If no from_number is specified,

use RINGG_DEFAULT_FROM_NUMBER.

2. Launch a Campaign

Trigger a batch calling campaign for multiple contacts.

curl -X POST "https://api.ringg.ai/v1/campaigns/launch" \
  -H "Authorization: Bearer $RINGG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "campaign_id": "<campaign-id>",
    "contacts": [
      {"phone": "+919876543210", "name": "Rahul", "custom_field": "value"},
      {"phone": "+919876543211", "name": "Priya", "custom_field": "value"}
    ]
  }'

When the user asks to "launch a campaign", "start calling a list", or "run outbound calls for

[list/segment]", use this action.

3. Check Call Status

curl -X GET "https://api.ringg.ai/v1/calls/{call_id}/status" \
  -H "Authorization: Bearer $RINGG_API_KEY"

Returns: call status (ringing, in-progress, completed, failed), duration, transcript summary,

and disposition.

4. Get Call History & Analytics

# Recent call history
curl -X GET "https://api.ringg.ai/v1/calls/history?limit=20" \
  -H "Authorization: Bearer $RINGG_API_KEY"

# Analytics for a time range
curl -X GET "https://api.ringg.ai/v1/analytics?from=2026-02-01&to=2026-02-06" \
  -H "Authorization: Bearer $RINGG_API_KEY"

When the user asks "how did the calls go", "show me call analytics", or "what happened on

yesterday's calls", use these endpoints.

5. List Assistants

curl -X GET "https://api.ringg.ai/v1/assistants" \
  -H "Authorization: Bearer $RINGG_API_KEY"

When the user asks "which agents do I have", "list my ringg assistants", or needs to select

an assistant before making a call, use this.

6. Get Call Transcript

curl -X GET "https://api.ringg.ai/v1/calls/{call_id}/transcript" \
  -H "Authorization: Bearer $RINGG_API_KEY"

When the user asks "what was said on the call" or "get the transcript", use this.

Webhook Integration (Inbound Events)

Ringg AI can push real-time call events to OpenClaw via webhooks. To receive call status

updates, transcripts, and dispositions:

  1. Expose OpenClaw's webhook endpoint:

```bash

ngrok http 18789

```

  1. Configure the webhook URL in Ringg AI dashboard or via API:

```bash

curl -X POST "https://api.ringg.ai/v1/webhooks" \

-H "Authorization: Bearer $RINGG_API_KEY" \

-H "Content-Type: application/json" \

-d '{

"url": "https://your-ngrok-url.ngrok.io/webhook/ringg",

"events": ["call.completed", "call.failed", "call.transcript_ready"]

}'

```

  1. OpenClaw will receive POST payloads with call events that can trigger agent actions.

Usage Patterns

Natural language triggers → actions:

User saysAction
-------------------
"Call Rahul at +919876543210"Outbound call with default assistant
"Use the PolicyBazaar agent to call this lead"Outbound call with specific assistant
"Launch the feedback campaign"Campaign launch
"How did the last 10 calls go?"Call history
"Get the transcript for call XYZ"Call transcript
"What agents do I have in Ringg?"List assistants
"Show me today's call analytics"Analytics

Error Handling

  • 401 Unauthorized: Check RINGG_API_KEY is valid
  • 404 Not Found: Verify assistant_id, call_id, or campaign_id exists
  • 429 Rate Limited: Back off and retry after the indicated interval
  • Phone number format: Always use E.164 format (e.g., +919876543210 for India)

API Reference

For full API details, see references/api_reference.md in this skill directory, or

visit the Ringg AI API Docs.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 20:23 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 198 📥 64,987
data-analysis

Stock Analysis

udiedrichsen
{"answer":"基于雅虎财经数据,分析股票与加密货币。支持投资组合管理、自选股预警、股息分析、8维评分、热门趋势扫描及传闻/早期信号探测。适用于股票分析、持仓追踪、财报异动、加密监控、热门股追踪或提前发掘非主流传闻。"}
★ 270 📥 56,919
data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 367 📥 140,189