{
  "schemaVersion": "1.0",
  "item": {
    "slug": "phone-agent",
    "name": "Phone Voice Agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/kesslerio/phone-agent",
    "canonicalUrl": "https://clawhub.ai/kesslerio/phone-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/phone-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=phone-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/requirements.txt",
      "scripts/server.py",
      "scripts/server_realtime.py",
      "tasks/book_restaurant.yaml"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/phone-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/phone-agent",
    "agentPageUrl": "https://openagent3.xyz/skills/phone-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/phone-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/phone-agent/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Phone Agent Skill",
        "body": "Runs a local FastAPI server that acts as a real-time voice bridge."
      },
      {
        "title": "Architecture",
        "body": "Twilio (Phone) <--> WebSocket (Audio) <--> [Local Server] <--> Deepgram (STT)\n                                                  |\n                                                  +--> OpenAI (LLM)\n                                                  +--> ElevenLabs (TTS)"
      },
      {
        "title": "Prerequisites",
        "body": "Twilio Account: Phone number + TwiML App.\nDeepgram API Key: For fast speech-to-text.\nOpenAI API Key: For the conversation logic.\nElevenLabs API Key: For realistic text-to-speech.\nNgrok (or similar): To expose your local port 8080 to Twilio."
      },
      {
        "title": "Setup",
        "body": "Install Dependencies:\npip install -r scripts/requirements.txt\n\n\n\nSet Environment Variables (in ~/.moltbot/.env, ~/.clawdbot/.env, or export):\nexport DEEPGRAM_API_KEY=\"your_key\"\nexport OPENAI_API_KEY=\"your_key\"\nexport ELEVENLABS_API_KEY=\"your_key\"\nexport TWILIO_ACCOUNT_SID=\"your_sid\"\nexport TWILIO_AUTH_TOKEN=\"your_token\"\nexport PORT=8080\n\n\n\nStart the Server:\npython3 scripts/server.py\n\n\n\nExpose to Internet:\nngrok http 8080\n\n\n\nConfigure Twilio:\n\nGo to your Phone Number settings.\nSet \"Voice & Fax\" -> \"A Call Comes In\" to Webhook.\nURL: https://<your-ngrok-url>.ngrok.io/incoming\nMethod: POST"
      },
      {
        "title": "Usage",
        "body": "Call your Twilio number. The agent should answer, transcribe your speech, think, and reply in a natural voice."
      },
      {
        "title": "Customization",
        "body": "System Prompt: Edit SYSTEM_PROMPT in scripts/server.py to change the persona.\nVoice: Change ELEVENLABS_VOICE_ID to use different voices.\nModel: Switch gpt-4o-mini to gpt-4 for smarter (but slower) responses."
      }
    ],
    "body": "Phone Agent Skill\n\nRuns a local FastAPI server that acts as a real-time voice bridge.\n\nArchitecture\nTwilio (Phone) <--> WebSocket (Audio) <--> [Local Server] <--> Deepgram (STT)\n                                                  |\n                                                  +--> OpenAI (LLM)\n                                                  +--> ElevenLabs (TTS)\n\nPrerequisites\nTwilio Account: Phone number + TwiML App.\nDeepgram API Key: For fast speech-to-text.\nOpenAI API Key: For the conversation logic.\nElevenLabs API Key: For realistic text-to-speech.\nNgrok (or similar): To expose your local port 8080 to Twilio.\nSetup\n\nInstall Dependencies:\n\npip install -r scripts/requirements.txt\n\n\nSet Environment Variables (in ~/.moltbot/.env, ~/.clawdbot/.env, or export):\n\nexport DEEPGRAM_API_KEY=\"your_key\"\nexport OPENAI_API_KEY=\"your_key\"\nexport ELEVENLABS_API_KEY=\"your_key\"\nexport TWILIO_ACCOUNT_SID=\"your_sid\"\nexport TWILIO_AUTH_TOKEN=\"your_token\"\nexport PORT=8080\n\n\nStart the Server:\n\npython3 scripts/server.py\n\n\nExpose to Internet:\n\nngrok http 8080\n\n\nConfigure Twilio:\n\nGo to your Phone Number settings.\nSet \"Voice & Fax\" -> \"A Call Comes In\" to Webhook.\nURL: https://<your-ngrok-url>.ngrok.io/incoming\nMethod: POST\nUsage\n\nCall your Twilio number. The agent should answer, transcribe your speech, think, and reply in a natural voice.\n\nCustomization\nSystem Prompt: Edit SYSTEM_PROMPT in scripts/server.py to change the persona.\nVoice: Change ELEVENLABS_VOICE_ID to use different voices.\nModel: Switch gpt-4o-mini to gpt-4 for smarter (but slower) responses."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kesslerio/phone-agent",
    "publisherUrl": "https://clawhub.ai/kesslerio/phone-agent",
    "owner": "kesslerio",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/phone-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/phone-agent",
    "agentUrl": "https://openagent3.xyz/skills/phone-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/phone-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/phone-agent/agent.md"
  }
}