Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

ringg-voice-agentRingg 语音 Agent

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

40,243

周安装

1,711

GitHub Stars

2

下载量

14,099
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ringg-voice-agent(Ringg 语音 Agent)
来源仓库:https://github.com/siddharthpilani/ringg-voice-agent
安装命令:
openclaw skills install ringg-voice-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ringg-voice-agent

简介

将 Ringg AI 语音代理与 OpenClaw 集成,以拨打、接听和管理由 Ringg 语音操作系统支持的电话。当用户想要执行以下操作时,请使用此技能:(1) 通过 Ringg AI 代理拨打出站语音呼叫,(2) 从 OpenClaw 触发 Ringg AI 活动,(3) 检查呼叫状态或从 Ringg 检索呼叫历史记录/分析,(4) 管理 Ringg AI 助手(列表、创建、更新),(5) 将 OpenClaw 连接到 Ringg 的语音平台以进行自动电话交互,例如潜在客户资格、反馈收集、预约提醒或订单确认,(6) 将 Ringg AI 设置为语音提供商对于 OpenClaw 代理。当提及“ringg”、“语音呼叫”、“通过ringg 进行电话呼叫”、“ringg 代理”、“ringg 活动”、“语音 AI 呼叫”或任何通过 Ringg AI 平台发起/管理呼叫的请求时触发。

SKILL.md

name
ringg-voice-agent
description
>

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:
   ngrok http 18789
  1. Configure the webhook URL in Ringg AI dashboard or via API:
   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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.88%
按下载量换算13,377

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills