Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

agentizzy-phone-agentAgent 电话 Agent

Agent Skill

agentizzy-phone-agent 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,003

周安装

129

GitHub Stars

公开资料未说明

下载量

1,053
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agentizzy-phone-agent

简介

agentizzy-phone-agent 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于任何企业的 AI 电话代理 — 24/7 接听来电、捕获潜在客户、预约并返回结构化通话数据以及记录、摘要等场景。
  • 通过 clawhub 安装,命令为 openclaw skills install agentizzy-phone-agent。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
agentizzy-phone-agent
description
AI phone agent for any business — answers inbound calls 24/7, captures leads, books appointments, and returns structured call data with transcripts, summaries, and sentiment. Provision a phone agent in seconds via API, then query calls, leads, and analytics. Use to add phone handling to any agent workflow.
version
1.2.0
metadata
{"openclaw":{"emoji":"📞","requires":{"env":["AGENTIZZY_API_KEY"],"bins":["curl","python3"]},"primaryEnv":"AGENTIZZY_API_KEY"}}

AgentIzzy Phone Agent

AI-powered inbound phone agent for any business. Answers calls 24/7, captures leads, books appointments, and returns structured call transcripts, summaries, and sentiment. Provision a dedicated phone agent in seconds, then query call history, leads, and analytics.

V1 is inbound only — callers reach Izzy, who handles the conversation, captures intent, and logs everything.

Setup

  1. Register for a free API key (instant, no approval needed):
   curl -s -X POST https://api.agentizzy.com/api/v1/register \
     -H "Content-Type: application/json" \
     -d '{"name": "My Agent", "agent_id": "my-agent"}'

Returns an api_key starting with aiz_ — save it, shown only once.

  1. Set environment variable:
   export AGENTIZZY_API_KEY="aiz_your_key_here"

Provision a Phone Agent

Set up a new AI phone agent for a business:

bash scripts/setup.sh "Business Name" "vertical" "phone" "website_url"

Arguments:

  • name (required): Business name — Izzy uses this in greetings
  • vertical (optional): Industry vertical for specialized behavior. Options: storage, hvac, dental, legal, salon, plumbing, automotive, generic. Default: auto-detected from website.
  • phone (optional): Business phone number for call transfers
  • website (optional): Business website URL — Izzy scrapes it to learn services, FAQs, hours

Example:

bash scripts/setup.sh "Sunrise Dental" "dental" "+15551234567" "https://www.sunrisedental.com"

Returns:

{
  "id": "agent-aik-1234567890-1713000000000",
  "bizCode": "A3K7X2",
  "name": "Sunrise Dental",
  "vertical": "dental",
  "demo_phone": "+16783299415",
  "demo_code": "A3K7X2",
  "status": "active"
}

After provisioning, callers can reach the agent by calling the demo line (+1 678-329-9415) and entering the demo_code. The id field is used for all subsequent API calls.

Dependencies: This script uses curl for HTTP requests and python3 for safe JSON escaping. Both must be available in your PATH.

Get Call History

Retrieve recent calls with AI summaries and sentiment:

bash scripts/calls.sh "agent_id" [limit] [since]

Arguments:

  • agent_id (required): The id returned from setup
  • limit (optional): Number of calls to return (default: 20, max: 100)
  • since (optional): ISO date filter — only calls after this date (e.g., 2026-04-01)

Example:

bash scripts/calls.sh "agent-aik-1234567890-1713000000000" 10 "2026-04-01"

Returns:

{
  "calls": [
    {
      "id": "call-uuid",
      "caller_number": "+15559876543",
      "started_at": "2026-04-13T14:30:00Z",
      "duration_seconds": 127,
      "transcript": "Agent: Thank you for calling Sunrise Dental...",
      "ai_summary": "Caller asked about teeth whitening pricing and booked a consultation for next Tuesday.",
      "sentiment": "positive",
      "tag": "new_lead"
    }
  ]
}

Key fields:

  • transcript: Full call transcript
  • ai_summary: 1-2 sentence summary generated by AI after the call
  • sentiment: positive, neutral, or negative
  • tag: new_lead, general, missed, or spam
  • duration_seconds: Call length
  • recording_url: Link to call recording (when available)

Dependencies: Requires curl.

Get Captured Leads

Retrieve leads captured during calls:

bash scripts/leads.sh "agent_id" [limit]

Arguments:

  • agent_id (required): The id returned from setup
  • limit (optional): Number of leads to return (default: 50, max: 100)

Example:

bash scripts/leads.sh "agent-aik-1234567890-1713000000000" 20

Returns:

{
  "leads": [
    {
      "id": "lead-uuid",
      "first_name": "Sarah",
      "last_name": "Chen",
      "phone": "+15559876543",
      "email": "sarah@example.com",
      "notes": "Interested in teeth whitening, prefers morning appointments",
      "status": "new",
      "created_at": "2026-04-13T14:32:00Z"
    }
  ]
}

Dependencies: Requires curl.

Quick API Access (curl only)

For environments without the scripts, call the API directly:

# List your provisioned agents
curl -s https://api.agentizzy.com/api/v1/agents \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY"

# Get calls for an agent
curl -s "https://api.agentizzy.com/api/v1/agents/AGENT_ID/calls?limit=10" \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY"

# Get analytics
curl -s "https://api.agentizzy.com/api/v1/agents/AGENT_ID/stats?days=30" \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY"

Webhook Events

Configure a webhook URL to receive real-time events:

curl -s -X POST "https://api.agentizzy.com/api/v1/agents/AGENT_ID/webhook" \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://your-endpoint.com/webhook"}'

Events fired:

  • call.completed — call finished, includes summary, sentiment, duration
  • lead.captured — new lead extracted from a call
  • sms.received — inbound SMS to the business line

Dedicated Phone Numbers (Pro/Enterprise)

Search for available numbers:

curl -s -X POST "https://api.agentizzy.com/api/v1/agents/AGENT_ID/phone/search" \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"areaCode": "404"}'

Provision a dedicated number (callers reach the agent directly, no access code):

curl -s -X POST "https://api.agentizzy.com/api/v1/agents/AGENT_ID/phone/provision" \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"phoneNumber": "+14045551234"}'

Pricing

Usage-based pricing designed for autonomous agents:

PlanPriceAgentsMinutesPhone NumbersOverage
Free$0/mo130/mo0 (shared demo line)blocked
Builder$29/mo10100 included3 dedicated$0.20/min
Scale$0/mo baseUnlimitedPay-per-use10 dedicated$0.15/min ($50/mo min)

Check current usage and plan details:

curl -s https://api.agentizzy.com/api/v1/billing/usage \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY"

Upgrade to a paid plan:

curl -s -X POST https://api.agentizzy.com/api/v1/billing/checkout \
  -H "Authorization: Bearer $AGENTIZZY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tier": "builder"}'

Returns a Stripe checkout URL — direct the account owner to complete payment. Plan upgrades take effect immediately.

Rate Limits

  • API: 60 requests/minute per API key
  • Provisioning: limited by plan (1 / 10 / unlimited agents)
  • Call minutes: limited by plan (30 / 100 included / pay-per-use per month)
  • Call/Lead queries: 100 results per request (paginate with limit and offset)

Use When

  • You need to add phone call handling to an agent workflow
  • You want AI-powered lead capture from inbound calls
  • You need structured call data (transcripts, summaries, sentiment) for downstream processing
  • You are building a multi-channel agent that handles phone, chat, and email
  • You want to monitor call activity and lead flow programmatically

NOT For

  • Outbound calling or cold calls (V1 is inbound only)
  • Real-time call transcription streaming (transcripts available after call ends)
  • Direct Twilio/telephony configuration — AgentIzzy manages the phone infrastructure
  • SMS-only workflows without phone calls

External Endpoints

  • api.agentizzy.com — AgentIzzy Agent API (HTTPS only, agentizzy.com domain)

Security & Privacy

  • All API requests are authenticated via Bearer token over HTTPS
  • API keys are SHA-256 hashed at rest — AgentIzzy never stores plaintext keys
  • Call recordings and transcripts are stored in Cloudflare infrastructure (US)
  • Lead data (names, phone numbers, emails) is captured during calls and stored per-agent
  • Agents can only access data for phone agents they provisioned (ownership verified per request)
  • Webhook payloads are sent via HTTPS POST — use HTTPS endpoints only
  • For compliance requirements, contact team@agentizzy.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.8%
按下载量换算946

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills