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

supercallsupercall 开发

Agent Skill

supercall 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

61,340

周安装

2,608

GitHub Stars

6

下载量

21,490
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install supercall

简介

基于 OpenAI Realtime API 与 Twilio 的智能外呼系统,支持超低延迟对话。

  • 适用于客服回访、市场调研或自动化通知等语音交互场景。
  • 可自定义角色与话术目标,适配不同业务需求。
  • 部署需配置 Twilio 账号与语音密钥,注意通话费用结算方式。
  • 涉及电话营销时须符合当地通信监管规定,避免骚扰投诉。

SKILL.md

name
supercall
description
Make AI-powered phone calls with custom personas and goals. Uses OpenAI Realtime API + Twilio for ultra-low latency voice conversations. Supports DTMF/IVR navigation — the AI can navigate automated phone menus by sending touch-tone digits. Use when you need to call someone, confirm appointments, deliver messages, navigate phone trees, or have the AI handle phone conversations autonomously. Unlike the standard voice_call plugin, the person on the call doesn't have access to gateway agent, reducing attack surfaces.
homepage
https://github.com/xonder/supercall
metadata

SuperCall

Make AI-powered phone calls with custom personas and goals using OpenAI Realtime API + Twilio.

Features

  • Persona Calls: Define a persona, goal, and opening line for autonomous calls
  • Full Realtime Mode: GPT-4o powered voice conversations with <~1s latency
  • DTMF / IVR Navigation: AI automatically navigates automated phone menus (press 1 for X, enter your account number, etc.) by generating and injecting touch-tone digits into the audio stream
  • Provider: Supports Twilio (full realtime) and mock provider for testing
  • Streaming Audio: Bidirectional audio via WebSocket for real-time conversations
  • Limited Access: Unlike the standard voice_call plugin, the person on the call doesn't have access to gateway agent, reducing attack surfaces.

Credentials

Required

CredentialSourcePurpose
OPENAI_API_KEYOpenAIPowers the realtime voice AI (GPT-4o)
TWILIO_ACCOUNT_SIDTwilio ConsoleTwilio account identifier
TWILIO_AUTH_TOKENTwilio ConsoleTwilio API authentication

Optional

CredentialSourcePurpose
NGROK_AUTHTOKENngrokngrok tunnel auth (only needed if using ngrok as tunnel provider)

Credentials can be set via environment variables or in the plugin config (config takes precedence).

Installation

  1. Install the plugin via npm or copy to your OpenClaw extensions directory
  1. Enable hooks for call completion callbacks (required):
{
  "hooks": {
    "enabled": true,
    "token": "your-secret-token"
  }
}

Generate a secure token with: openssl rand -hex 24

⚠️ Security: The hooks.token is sensitive — it authenticates internal callbacks. Keep it secret and rotate if compromised.
  1. Configure the plugin in your openclaw config:
{
  "plugins": {
    "entries": {
      "supercall": {
        "enabled": true,
        "config": {
          "provider": "twilio",
          "fromNumber": "+15551234567",
          "twilio": {
            "accountSid": "your-account-sid",
            "authToken": "your-auth-token"
          },
          "streaming": {
            "openaiApiKey": "your-openai-key"
          },
          "tunnel": {
            "provider": "ngrok",
            "ngrokDomain": "your-domain.ngrok.app"
          }
        }
      }
    }
  }
}

Important: The hooks.token is required for call completion callbacks. Without it, the agent won't be notified when calls finish.

Tool: supercall

Make phone calls with custom personas:

supercall(
  action: "persona_call",
  to: "+1234567890",
  persona: "Personal assistant to the king",
  goal: "Confirm the callee's availabilities for dinner next week",
  openingLine: "Hey, this is Michael, Alex's Assistant..."
)

Actions

  • persona_call - Start a new call with a persona
  • get_status - Check call status and transcript
  • end_call - End an active call
  • list_calls - List active persona calls

DTMF / IVR Navigation

The AI automatically handles automated phone menus (IVR systems) during calls. When it hears prompts like "press 1 for sales", it uses an internal send_dtmf tool to send touch-tone digits through the audio stream. This is fully automatic — no extra configuration or agent intervention is needed.

  • Supported characters: 0-9, *, #, A-D, w (500ms pause)
  • Example sequences: 1 (press 1), 1234567890# (enter account number + pound), 1w123# (press 1, wait, then enter 123#)
  • How it works: DTMF tones are generated as ITU-standard dual-frequency pairs, encoded to µ-law (8kHz mono), and injected directly into the Twilio media stream. No external dependencies.

This means persona calls can navigate phone trees end-to-end — e.g., "call the pharmacy, navigate through their menu, and check on my prescription status."

Configuration Options

OptionDescriptionDefault
providerVoice provider (twilio/mock)Required
fromNumberCaller ID (E.164 format)Required for real providers
toNumberDefault recipient number-
twilio.accountSidTwilio Account SIDTWILIO_ACCOUNT_SID env
twilio.authTokenTwilio Auth TokenTWILIO_AUTH_TOKEN env
streaming.openaiApiKeyOpenAI API key for realtimeOPENAI_API_KEY env
streaming.silenceDurationMsVAD silence duration in ms800
streaming.vadThresholdVAD threshold 0-1 (higher = less sensitive)0.5
streaming.streamPathWebSocket path for media stream/voice/stream
tunnel.providerTunnel for webhooks (ngrok/tailscale-serve/tailscale-funnel)none
tunnel.ngrokDomainFixed ngrok domain (recommended for production)-
tunnel.ngrokAuthTokenngrok auth tokenNGROK_AUTHTOKEN env

Full realtime requires an OpenAI API key.

Requirements

  • Node.js 20+
  • Twilio account for full realtime calls (media streams)
  • ngrok or Tailscale for webhook tunneling (production)
  • OpenAI API key for real-time features

Architecture

This is a fully standalone skill - it does not depend on the built-in voice-call plugin. All voice calling logic is self-contained.

Runtime Behavior and Security

This plugin is not instruction-only. It runs code, spawns processes, opens network listeners, and writes to disk. The following describes exactly what happens at runtime.

Process spawning

When tunnel.provider is set to ngrok, the plugin spawns the ngrok CLI binary via child_process.spawn. When set to tailscale-serve or tailscale-funnel, it spawns the tailscale CLI instead. These processes run for the lifetime of the plugin and are terminated on shutdown. If tunnel.provider is none (or a publicUrl is provided directly), no external processes are spawned.

Network activity

  • Local webhook server: The plugin opens an HTTP server (default 0.0.0.0:3335) to receive Twilio webhook callbacks and WebSocket media streams.
  • Startup self-test: On startup, the plugin sends an HTTP POST to its own public webhook URL with an x-supercall-self-test header to verify connectivity. If publicUrl is misconfigured to point at an unintended endpoint, this self-test token could be sent there. Always verify your publicUrl or tunnel configuration before starting.
  • Outbound API calls: The plugin makes outbound requests to the OpenAI Realtime API (WebSocket) and Twilio REST API during calls.

Webhook verification

  • Twilio calls: Verified using Twilio's X-Twilio-Signature header (HMAC-SHA1).
  • Self-test requests: Authenticated using an internal token (x-supercall-self-test) generated at startup.
  • ngrok free-tier relaxation: On free-tier ngrok domains (.ngrok-free.app, .ngrok.io), URL reconstruction may vary due to ngrok's request rewriting; Twilio signature mismatches are logged but allowed through. Paid/custom ngrok domains (.ngrok.app) are verified strictly. This relaxation is limited to free-tier domains only and does not affect Tailscale or direct publicUrl configurations.

Data at rest

Call transcripts are persisted to ~/clawd/supercall-logs. These logs may contain sensitive conversation content. Review and rotate logs periodically.

Best practices

  • Protect your credentials — Twilio and OpenAI keys grant access to paid services
  • Verify your public URL — ensure publicUrl or tunnel config points where you expect before starting
  • Rotate hooks.token periodically and if you suspect compromise
  • Review call logs — transcripts stored on disk may contain sensitive content

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.65%
按下载量换算17,547

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills