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

openclaw-voiceai-voice-agentOpenClaw voiceai voice Agent 部署

Agent Skill

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

总安装

78,557

周安装

3,340

GitHub Stars

3

下载量

27,522
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-voiceai-voice-agent

简介

创建、管理和部署 Voice.ai 对话式 AI 代理。当用户想要使用语音代理、列出其代理、创建新代理或管理代理配置时使用。

SKILL.md

name
voice.ai-voice-agents
title
Voice.ai Voice Agents
description
>

Voice.ai Agents

Build the best conversational AI voice agents with Voice.ai's Agent API.

✨ Features

  • Agent Management - Create, update, and delete voice agents
  • One-Click Deploy - Deploy agents for phone calls instantly
  • Knowledge Base - RAG-powered agents with custom knowledge
  • MCP Integration - Connect agents to external tools via MCP
  • Phone Numbers - Manage inbound/outbound phone numbers
  • Analytics - Track call history and agent performance

⚙️ Configuration

Get Your API Key

  1. Go to Voice.ai Developer Dashboard
  2. Sign in or create an account
  3. Generate a new API key
  4. Copy and save it securely

Set Up Authentication (3 Methods)

Method 1: Environment Variable (Recommended)

export VOICE_AI_API_KEY="your-api-key-here"

Method 2: .env File

# Create .env file in project root
echo 'VOICE_AI_API_KEY=your-api-key-here' >> .env

Method 3: OpenClaw Config

{
  "skills": {
    "voice.ai-voice-agents": {
      "api_key": "your-api-key-here"
    }
  }
}

🔐 Before Any Operation

Important: Always verify authentication before running any commands.
# 1. Check if API key is set
echo $VOICE_AI_API_KEY

# 2. Test connection (list agents)
node scripts/agent.js list

# 3. If errors, re-export your key
export VOICE_AI_API_KEY="your-api-key-here"

Silent Initialization

The SDK automatically initializes when you run any command. No manual setup required after setting the API key.

🚀 Quick Start

export VOICE_AI_API_KEY="your-api-key"

# Create an agent
node scripts/agent.js create --name "Support Bot" --prompt "You are a helpful assistant"

# List all agents
node scripts/agent.js list

# Deploy an agent
node scripts/agent.js deploy --id <agent_id>

🤖 Agent Configuration

ParameterDefaultDescription
llm_modelgemini-2.5-flash-liteLLM model for responses
llm_temperature0.7Response creativity (0-2)
max_call_duration900Max call length in seconds
allow_interruptionstrueLet users interrupt agent
auto_noise_reductiontrueFilter background noise

🎙️ TTS Voice Settings

ParameterDefaultDescription
voice_id-Voice ID for agent speech
modelautoTTS model (auto-selected)
languageenLanguage code
temperature1.0Voice expressiveness (0-2)
top_p0.8Sampling parameter (0-1)

🌍 Supported Languages

auto, en, ca, sv, es, fr, de, it, pt, pl, ru, nl

💻 CLI Usage

# Create a new agent
node scripts/agent.js create --name "My Agent" --prompt "System prompt here" --greeting "Hello!"

# List all agents
node scripts/agent.js list

# Get agent details
node scripts/agent.js get --id <agent_id>

# Update an agent
node scripts/agent.js update --id <agent_id> --prompt "New prompt"

# Deploy an agent
node scripts/agent.js deploy --id <agent_id>

# Pause an agent
node scripts/agent.js pause --id <agent_id>

# Delete an agent
node scripts/agent.js delete --id <agent_id>

🤖 OpenClaw Integration

JSON Configuration

{
  "name": "voice.ai-voice-agents",
  "enabled": true,
  "config": {
    "api_key": "${VOICE_AI_API_KEY}",
    "default_model": "gemini-2.5-flash-lite",
    "auto_deploy": false
  }
}

Chat Triggers

OpenClaw automatically activates this skill when you mention:

  • "voice agent", "voice bot", "phone agent"
  • "create agent", "deploy agent", "list agents"
  • "Voice.ai", "voice ai"

🗣️ User-Friendly Language

When User Says...Skill Does...
"Create a support agent"Creates agent with support-focused prompt
"Show my agents"Lists all agents with status
"Deploy the agent"Deploys agent for phone calls
"Update the greeting"Updates agent greeting message
"Delete the test agent"Deletes specified agent
"What agents do I have?"Lists agents in friendly format
"Make an FAQ bot"Creates agent with FAQ template
"Connect to my MCP server"Configures MCP integration

📁 Project Files

voice-ai-agents/
├── SKILL.md                    # This documentation
├── voice-ai-agents.yaml        # Skill configuration
├── voice-ai-agents-sdk.js      # JavaScript SDK
└── scripts/
    └── agent.js                # CLI tool
FilePurpose
SKILL.mdDocumentation and OpenClaw skill definition
voice-ai-agents.yamlAPI config, models, defaults
voice-ai-agents-sdk.jsFull SDK with all API methods
scripts/agent.jsCommand-line interface

❌ Error Handling

ErrorCauseSolution
401 UnauthorizedInvalid or missing API keyCheck VOICE_AI_API_KEY is set correctly
403 ForbiddenAPI key lacks permissionsGenerate new key with proper scopes
404 Not FoundAgent ID doesn't existRun list to get valid agent IDs
429 Too Many RequestsRate limit exceededWait 60 seconds and retry
500 Server ErrorVoice.ai API issueCheck status page
ENOTFOUNDNetwork errorCheck internet connection
Agent not deployedAgent exists but not activeRun deploy --id <agent_id>

Graceful Error Messages

The SDK provides user-friendly error messages:

❌ Authentication failed. Please check your API key.
   Get one at: https://voice.ai/app/dashboard/developers

❌ Agent "support-bot" not found. 
   Run 'node scripts/agent.js list' to see available agents.

❌ Rate limit reached. Please wait 60 seconds before retrying.

📝 Triggers

These phrases activate the Voice.ai Agents skill in OpenClaw:

CategoryTrigger Phrases
Create"create voice agent", "make a phone bot", "new agent"
List"show agents", "list my agents", "what agents exist"
Deploy"deploy agent", "activate agent", "start the bot"
Update"update agent", "change prompt", "edit greeting"
Delete"delete agent", "remove bot", "destroy agent"
Info"agent details", "show agent", "get agent info"

🔗 MCP Server Integration

Connect your agent to external tools:

const agent = await client.createAgent({
  name: "MCP Agent",
  config: {
    prompt: "You can use tools to help users",
    mcp_servers: [{
      name: "my-tools",
      url: "https://my-server.com/mcp",
      auth_type: "bearer_token",
      auth_token: "secret"
    }]
  }
});

📚 Knowledge Base (RAG)

Add custom knowledge to your agent:

# Create agent with knowledge base
node scripts/agent.js create --name "FAQ Bot" --kb-id 123

🔗 Links

📋 Changelog

VersionDateChanges
1.0.02026-01-31Initial release with full agent management

Made with ❤️ by Nick Gill

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.96%
按下载量换算24,759

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills