{
  "schemaVersion": "1.0",
  "item": {
    "slug": "outbound-call",
    "name": "Outbound Call",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/humanjesse/outbound-call",
    "canonicalUrl": "https://clawhub.ai/humanjesse/outbound-call",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/outbound-call",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=outbound-call",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "call.py"
    ],
    "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. 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. 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/outbound-call"
    },
    "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/outbound-call",
    "agentPageUrl": "https://openagent3.xyz/skills/outbound-call/agent",
    "manifestUrl": "https://openagent3.xyz/skills/outbound-call/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/outbound-call/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Outbound Call",
        "body": "Source code and setup guide: github.com/humanjesse/hostinger-openclaw-guides\n\nPlace outbound phone calls using the ElevenLabs voice agent with Twilio. The voice agent on the call uses OpenClaw as its brain — same as inbound calls."
      },
      {
        "title": "When to use",
        "body": "When the user asks you to:\n\nCall someone or phone someone\nMake a phone call\nDial a number\nRing someone\nPlace a call to a number"
      },
      {
        "title": "How to use",
        "body": "Run the call script with a phone number in E.164 format:\n\npython3 skills/outbound-call/call.py +1XXXXXXXXXX\n\nWith an optional custom first message (what the agent says when the recipient picks up):\n\npython3 skills/outbound-call/call.py +1XXXXXXXXXX \"Hi John, I'm calling about your appointment tomorrow.\"\n\nWith optional call context (passed as a dynamic variable to the agent):\n\npython3 skills/outbound-call/call.py +1XXXXXXXXXX \"Hi, this is a quick follow-up call.\" \"Customer requested callback about billing issue #4521\""
      },
      {
        "title": "Phone number format",
        "body": "US numbers: +1 followed by 10 digits, e.g., +15551234567\nIf the user gives a number like 555-123-4567 or (555) 123-4567, reformat it to +15551234567\nAlways confirm the formatted number with the user before placing the call"
      },
      {
        "title": "Rules",
        "body": "ALWAYS confirm the phone number with the user before placing a call\nNEVER place a call without explicit user consent\nReport the result back to the user (conversation ID on success, error details on failure)\nIf the call fails, explain the error and suggest fixes"
      }
    ],
    "body": "Outbound Call\n\nSource code and setup guide: github.com/humanjesse/hostinger-openclaw-guides\n\nPlace outbound phone calls using the ElevenLabs voice agent with Twilio. The voice agent on the call uses OpenClaw as its brain — same as inbound calls.\n\nWhen to use\n\nWhen the user asks you to:\n\nCall someone or phone someone\nMake a phone call\nDial a number\nRing someone\nPlace a call to a number\nHow to use\n\nRun the call script with a phone number in E.164 format:\n\npython3 skills/outbound-call/call.py +1XXXXXXXXXX\n\n\nWith an optional custom first message (what the agent says when the recipient picks up):\n\npython3 skills/outbound-call/call.py +1XXXXXXXXXX \"Hi John, I'm calling about your appointment tomorrow.\"\n\n\nWith optional call context (passed as a dynamic variable to the agent):\n\npython3 skills/outbound-call/call.py +1XXXXXXXXXX \"Hi, this is a quick follow-up call.\" \"Customer requested callback about billing issue #4521\"\n\nPhone number format\nUS numbers: +1 followed by 10 digits, e.g., +15551234567\nIf the user gives a number like 555-123-4567 or (555) 123-4567, reformat it to +15551234567\nAlways confirm the formatted number with the user before placing the call\nRules\nALWAYS confirm the phone number with the user before placing a call\nNEVER place a call without explicit user consent\nReport the result back to the user (conversation ID on success, error details on failure)\nIf the call fails, explain the error and suggest fixes"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/humanjesse/outbound-call",
    "publisherUrl": "https://clawhub.ai/humanjesse/outbound-call",
    "owner": "humanjesse",
    "version": "0.1.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/outbound-call",
    "downloadUrl": "https://openagent3.xyz/downloads/outbound-call",
    "agentUrl": "https://openagent3.xyz/skills/outbound-call/agent",
    "manifestUrl": "https://openagent3.xyz/skills/outbound-call/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/outbound-call/agent.md"
  }
}