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 collection, appointment reminders, or order confirmations, (6) set up Ringg AI as a voice provider for the OpenClaw agent. Triggers on mentions of "ringg", "voice call", "phone call via ringg", "ringg agent", "ringg campaign", "voice AI call", or any request to initiate/manage calls through the Ringg AI platform.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/siddharthpilani/ringg-voice-agentRingg 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_KEYenvironment variable set (obtain from Ringg AI dashboard)RINGG_WORKSPACE_IDenvironment variable set- Optional:
RINGG_DEFAULT_ASSISTANT_IDfor a default voice agent - Optional:
RINGG_DEFAULT_FROM_NUMBERfor 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 toRINGG_DEFAULT_ASSISTANT_ID)to_number— Destination phone number in E.164 formatfrom_number— Caller ID number (falls back toRINGG_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"
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-siddharthpilani-ringg-voice-agent": {
"enabled": true,
"auto_update": true
}
}
}