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

phone-call打电话

Agent Skill

phone-call 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,616

周安装

66

GitHub Stars

公开资料未说明

下载量

517
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:phone-call(打电话)
来源仓库:https://github.com/teamily-ai/phone-call-skill
仓库路径:skills/phone-call
安装命令:
npx skills add https://github.com/teamily-ai/phone-call-skill --skill phone-call
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/teamily-ai/phone-call-skill --skill phone-call

简介

phone-call 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或代码变更进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Phone Call Skill

An intelligent AI skill that manages the complete phone call workflow: creating agents, executing calls, analyzing conversations, and providing actionable insights.

🚀 Quick Usage

For AI Agents calling this skill:

# Single command to make a complete phone call:
scripts/phone_call.sh \
  --to "+16576102352" \
  --purpose "Make dinner reservation for 2 people tonight at 8 PM. Name: John Smith"

What it does:

  • ✅ Creates optimized AI agent
  • ✅ Makes the phone call
  • ✅ Waits for completion
  • ✅ Analyzes conversation
  • ✅ Reports success/failure with recommendations

Output: Clear success/failure report with extracted information.


Core Capabilities

This skill provides complete phone call management:

  1. Agent Creation - Create purpose-specific AI phone agents
  2. Call Execution - Initiate and monitor phone calls
  3. Conversation Analysis - Analyze call transcripts and extract key information
  4. Intelligent Reporting - Provide clear, actionable summaries to users
  5. Continuous Optimization - Learn from failures and improve agent performance

When to Use This Skill

Use this skill when the user wants to:

  • Make a phone call to someone (restaurant, customer, vendor, etc.)
  • Create an automated phone agent for specific tasks
  • Conduct batch phone calls
  • Have an AI agent communicate via phone
  • Analyze call transcripts and extract insights
  • Get intelligent summaries of phone conversations

Quick Start - For AI Agents

Simple Usage:

# Navigate to skill directory
cd ~/.openclaw/workspace/skills/phone-call

# Make a call (automatic agent creation)
./scripts/phone_call.sh \
  --to "+1234567890" \
  --purpose "Make a dinner reservation for 2 people tonight at 8 PM"

# Analyze results
./scripts/phone_call.sh --analyze "call-id-xxx"

The script handles everything:

  1. Creates optimized agent based on purpose
  2. Makes the phone call
  3. Waits for completion
  4. Analyzes and reports results

For advanced usage, see "Complete Workflow" below.

Complete Workflow

1. Understand User Intent & Gather Information

When the user requests a phone call, extract and confirm:

Required Information:

  • Phone number: Target contact (with country code)
  • Call objective: Specific goal (e.g., "book table for 2 at 8 PM", "confirm meeting")
  • Key details: All information needed to complete the task
  • Language: Language preference
  • Urgency: Time sensitivity

Example User Requests:

  • "Call +1-657-610-2352 to book a table for 2 people tonight at 8 PM"
  • "Make a reservation at this restaurant for dinner"
  • "Call the client to confirm tomorrow's 3 PM meeting"

What YOU Must Do:

  • Extract ALL required information from the user
  • Ask for missing details before proceeding
  • Confirm the complete task objective

2. Create Intelligent Phone Agent

Create an agent optimized for the specific task with proper safeguards.

📚 IMPORTANT: Read BEST_PRACTICES.md for detailed guidance on creating effective agents!

The most common failure mode is identity confusion - especially for outbound calls. The agent must understand:

  • WHO is calling WHOM (YOU are calling THEM for outbound calls)
  • What NOT to say (e.g., NEVER say "How can I help you?" on outbound calls)
  • Specific conversation flow (not vague objectives)

Agent Configuration Requirements:

  • Clear objective: Explicit instructions on what to accomplish
  • Task completion criteria: Agent must know when the task is done
  • Failure handling: What to do if the task cannot be completed
  • Timeout settings: Appropriate idle_time and call_duration
  • Conversation safeguards: "DO NOT hang up until task is confirmed complete"

Key Settings:

{
  "prompt": "Clear, step-by-step instructions + completion criteria",
  "idle_time_seconds": 15,
  "endpointing_sensitivity": "relaxed",
  "ask_if_human_present_on_idle": true,
  "noise_suppression": true,
  "conversation_speed": 1.0
}

3. Execute Call & Monitor

Initiate the call and track its progress.

What YOU Must Do:

  1. Make the call using fluents.ai API
  2. Wait for call to complete (don't interrupt mid-call)
  3. Monitor for premature disconnections
  4. Note the call duration and status

Warning Signs to Watch For:

  • ⚠️ Call ends in < 30 seconds (likely failed)
  • ⚠️ No conversation detected
  • ⚠️ Status: human_disconnected too quickly

4. Analyze Call Results

CRITICAL: You MUST analyze every call to determine success/failure.

Use the analysis script:

python scripts/analyze_call.py --call-id "call_xxx"

Required Analysis:

  1. Task Completion Check:

- ✅ Was the objective achieved? (e.g., reservation confirmed?) - ❌ If not, why did it fail?

  1. Conversation Quality:

- Did the AI say everything it needed to say? - Did the other party respond? - Was information exchanged properly?

  1. Failure Pattern Detection:

- Too short (< 30 seconds) = likely early hangup - One-sided conversation = recognition or response issue - No confirmation = incomplete task execution

  1. Extract Key Information:

- Confirmation numbers - Alternative times/dates offered - Reasons for rejection/failure - Any action items

5. Provide Intelligent Report to User

CRITICAL: Always give the user a clear, actionable summary.

Your Report Must Include:

Success Report Format:

✅ Task Completed Successfully!

Reservation Details:
- Restaurant: [Name]
- Date: Tonight
- Time: 8:00 PM
- Party size: 2 people
- Name: John Smith
- Confirmation: [if provided]

Call Duration: 1m 45s

Failure Report Format:

❌ Task Failed - [Reason]

What Happened:
- Call duration: 15 seconds
- Issue: Restaurant hung up immediately
- Transcript: [show what was said]

Root Cause Analysis:
- [Specific problem identified]

Recommended Actions:
1. [Specific next step]
2. [Alternative approach]
3. [When to retry]

📊 Always Include:

  • Clear success/failure indicator
  • What was accomplished (or not)
  • Key information extracted
  • Next steps or action items
  • Whether retry is recommended

6. Optimize & Learn

After each call, identify improvements:

If Call Failed:

  • Analyze WHY it failed
  • Suggest agent improvements
  • Recommend retry timing
  • Consider alternative approaches

If Call Succeeded:

  • Note what worked well
  • Can the agent be more efficient?
  • What patterns led to success?

Common Optimizations:

  • Adjust idle_time for better patience
  • Improve prompt clarity
  • Add noise suppression
  • Modify conversation speed
  • Change voice or tone
  • Add retry logic with delays

Environment Setup

1. Install Dependencies

pip install -r requirements.txt

2. Configure API Keys

Create a .env file:

FLUENTS_API_KEY=your_api_key_here
FLUENTS_API_URL=https://api.fluents.ai
WEBHOOK_URL=https://your-webhook.com/callback

3. Test Connection

python scripts/test_connection.py

API Documentation

For detailed fluents.ai API documentation, see:

  • references/fluents_api.md - Complete API documentation
  • references/examples.md - Usage examples

Security Considerations

  1. Privacy Protection: Ensure you have permission to call the target number
  2. Compliance: Follow local telemarketing and anti-harassment regulations
  3. Key Security: Never commit API keys to version control
  4. Log Management: Properly manage call records with attention to data security

Usage Examples

Example 1: Simple Call

User: "Call 13800138000 to confirm tomorrow's 3 PM meeting"

Claude will:

  1. Identify the phone call intent
  2. Extract information (number: 13800138000, purpose: confirm meeting)
  3. Create agent and set conversation script
  4. Make the call
  5. Wait for call completion
  6. Return result: "Called 13800138000, they confirmed attendance at tomorrow's 3 PM meeting"

Example 2: Complex Conversation

User: "Call the customer to gather product feedback"

Claude will:

  1. Ask for customer's phone number
  2. Create agent with open-ended conversation capabilities
  3. Set conversation guidelines (ask about product experience, collect feedback)
  4. Make the call and conduct conversation
  5. AI analyzes conversation content
  6. Provide structured feedback report

Troubleshooting

Issue: Cannot connect to fluents.ai API

  • Check if API key is correct
  • Verify network connection
  • Check API service status

Issue: Call not answered

  • Confirm phone number format is correct (including country code)
  • Check if recipient is in service area
  • Review call logs for details

Issue: Speech recognition inaccurate

  • Check if language settings are correct
  • Adjust voice clarity parameters
  • Consider environmental noise factors

Technical Support

  • fluents.ai website: https://fluents.ai
  • API documentation: See references/ directory
  • Report issues: Submit a GitHub Issue

License

MIT License - See LICENSE file for details

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.75%
按下载量换算185

Claude

29.76%
按下载量换算154

Cursor

18.09%
按下载量换算94

Gemini CLI

8.16%
按下载量换算42

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills