Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

phone-calls打电话

Agent Skill

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

总安装

2,446

周安装

104

GitHub Stars

5

下载量

857
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/merit-systems/agentcash-skills --skill phone-calls

简介

phone-calls 提供 AI 生成的通话摘要与完整文字记录服务。

  • 支持多种语音角色选择与号码购买管理。phone-calls 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 适用于客户支持与市场调研中的语音交互场景。
  • 依赖 stablephone.dev 平台计费,按实际通话成本结算。
  • 使用前请确认 iMessage/FaceTime 查找功能的区域可用性。

SKILL.md

AI Phone Calls with StablePhone

Make AI-powered phone calls, buy phone numbers, and get transcripts via x402 payments at https://stablephone.dev.

Setup

See rules/getting-started.md for installation and wallet setup.

Quick Reference

TaskEndpointPrice
Make a callhttps://stablephone.dev/api/call$0.54
Check call statusGET https://stablephone.dev/api/call/{call_id}Free
Buy phone numberhttps://stablephone.dev/api/number$20.00
Top up number (30d)https://stablephone.dev/api/number/topup$15.00
List your numbersGET https://stablephone.dev/api/numbersFree
iMessage/FaceTime lookuphttps://stablephone.dev/api/lookup$0.05
Lookup statusGET https://stablephone.dev/api/lookup/status?token=...Free

Make a Call

npx agentcash@latest fetch https://stablephone.dev/api/call -m POST -b '{
  "phone_number": "+14155551234",
  "task": "Call this person and ask if they are available for a meeting tomorrow at 2pm. Be polite and professional."
}'

Required:

  • phone_number — E.164 format (e.g. +14155551234)
  • task — instructions for the AI agent (what to say, how to behave)

Optional:

  • from — outbound caller ID (must be an active StablePhone number)
  • first_sentence — specific opening line
  • voice — voice preset (see Voice Options below)
  • max_duration — max call length in minutes (1-30, default 5)
  • wait_for_greeting — wait for recipient to speak first (default false)
  • record — record call audio (default true)
  • model"base" (default, best quality) or "turbo" (lowest latency)
  • transfer_phone_number — number to transfer to if caller requests a human
  • voicemail_action"hangup" (default), "leave_message", or "ignore"
  • voicemail_message — message to leave (required when action is "leave_message")
  • metadata — custom key-value data to attach

Check Call Status

Poll until completed is true:

npx agentcash@latest fetch https://stablephone.dev/api/call/{call_id}

Response fields:

  • status — call status
  • completed — boolean, true when call is done
  • answered_by"human", "voicemail", or "no_answer"
  • call_length — duration in seconds
  • summary — AI-generated call summary
  • transcript — full text transcript
  • transcripts — array of timestamped transcript segments
  • recording_url — URL to call recording
  • price — actual cost

Poll every 5-10 seconds. Calls typically complete in 1-5 minutes depending on max_duration.

Voice Options

VoiceDescription
natAmerican female (default)
joshArticulate American male
mayaYoung American female, soft
juneAmerican female
paigeCalm, soft-tone female
derekSoft and engaging male
florianGerman male

Buy a Phone Number

Buy a number to use as outbound caller ID:

npx agentcash@latest fetch https://stablephone.dev/api/number -m POST -b '{"area_code": "415", "country_code": "US"}'

Optional:

  • area_code — 3-digit US/CA area code (random if omitted)
  • country_code"US" (default) or "CA"

Numbers expire after 30 days. Top up to extend.

Top Up a Number

npx agentcash@latest fetch https://stablephone.dev/api/number/topup -m POST -b '{"phone_number": "+14155551234"}'

Extends by 30 days from current expiry. Top-ups stack. Anyone can top up any number.

List Your Numbers

Uses SIWX auth (wallet from auth header):

npx agentcash@latest fetch https://stablephone.dev/api/numbers

iMessage/FaceTime Lookup

Check if a phone number has iMessage or FaceTime. The lookup is async (30-90 seconds).

Step 1: Start the lookup (paid, $0.05)

npx agentcash@latest fetch https://stablephone.dev/api/lookup -m POST -b '{"phone_number": "+14155551234"}'

Returns 202 with {"token": "jwt..."}.

Step 2: Poll for results (SIWX, free)

npx agentcash@latest fetch "https://stablephone.dev/api/lookup/status?token=JWT_TOKEN"

Poll every 3-5 seconds until status is "complete".

Response when complete:

{
  "status": "complete",
  "phone_number": "+1...",
  "imessage": "available|unavailable|unknown",
  "facetime": "available|unavailable|unknown|pending",
  "carrier": {"carrier": "...", "number_type": "..."},
  "country": {"name": "...", "iso2": "...", "flag": "..."}
}

Notes:

  • "unknown" means the number exists but status can't be determined (likely landline/VoIP)
  • Token expires after 60 minutes
  • Same number within ~1 hour reuses cached result

Workflows

Quick Call

  • (Optional) Check balance: npx agentcash@latest balance
  • Make call with task instructions
  • Poll status until completed
  • Review transcript and summary
npx agentcash@latest fetch https://stablephone.dev/api/call -m POST -b '{
  "phone_number": "+14155551234",
  "task": "Ask if the business is open on weekends and what their hours are."
}'

Leave a Voicemail

npx agentcash@latest fetch https://stablephone.dev/api/call -m POST -b '{
  "phone_number": "+14155551234",
  "task": "Leave a voicemail about the appointment.",
  "voicemail_action": "leave_message",
  "voicemail_message": "Hi, this is a reminder about your appointment tomorrow at 3pm. Please call back to confirm."
}'

For natural voicemail delivery, use "voicemail_action": "ignore" which bypasses detection and lets the AI speak naturally into the voicemail system.

Call with Transfer

npx agentcash@latest fetch https://stablephone.dev/api/call -m POST -b '{
  "phone_number": "+14155551234",
  "task": "Qualify this lead. Ask about their budget and timeline. If they are interested, offer to transfer to a sales rep.",
  "transfer_phone_number": "+14155559999",
  "voice": "josh",
  "max_duration": 10
}'

Set Up Dedicated Number

  • Buy a phone number ($20)
  • Use it as caller ID for outbound calls
  • Top up before expiry ($15/30 days)
npx agentcash@latest fetch https://stablephone.dev/api/number -m POST -b '{"area_code": "212", "country_code": "US"}'

Then use it as from:

npx agentcash@latest fetch https://stablephone.dev/api/call -m POST -b '{
  "phone_number": "+14155551234",
  "from": "+12125551234",
  "task": "Confirm the reservation for Friday at 7pm."
}'

Cost Estimation

TaskCost
Single call$0.54
Call + dedicated number$20.54
Monthly number maintenance$15.00
10 calls/month + number$20.00 + $5.40 = $25.40 first month

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.96%
按下载量换算291

Claude

30.76%
按下载量换算264

Cursor

19.05%
按下载量换算163

Gemini CLI

10.2%
按下载量换算87

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills