{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agentcall",
    "name": "AgentCall",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Kintupercy/agentcall",
    "canonicalUrl": "https://clawhub.ai/Kintupercy/agentcall",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agentcall",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentcall",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "claw.json",
      "instructions.md",
      "SKILL.md"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/agentcall"
    },
    "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/agentcall",
    "agentPageUrl": "https://openagent3.xyz/skills/agentcall/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentcall/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentcall/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": "AgentCall — Phone Numbers for AI Agents",
        "body": "You have access to the AgentCall API for phone numbers, SMS, voice calls, and AI voice calls."
      },
      {
        "title": "Authentication",
        "body": "All requests require: Authorization: Bearer <AGENTCALL_API_KEY>\n\nThe API key is available in the AGENTCALL_API_KEY environment variable."
      },
      {
        "title": "Base URL",
        "body": "https://api.agentcall.co\n\nFor a complete plain-text API reference: GET https://api.agentcall.co/llms.txt"
      },
      {
        "title": "Phone Numbers",
        "body": "Provision a number:\n\nPOST /v1/numbers/provision\r\nBody: { \"type\": \"local\", \"country\": \"US\", \"label\": \"my-agent\" }\r\nTypes: local ($2/mo), tollfree ($4/mo), mobile ($3/mo), sim ($8/mo, Pro only)\r\nResponse: { \"id\": \"num_xxx\", \"number\": \"+12125551234\", \"type\": \"local\", ... }\n\nList numbers:\n\nGET /v1/numbers\r\nQuery: ?limit=20&country=US&type=local\n\nGet number details:\n\nGET /v1/numbers/:id\n\nRelease a number (irreversible):\n\nDELETE /v1/numbers/:id"
      },
      {
        "title": "SMS",
        "body": "Send SMS:\n\nPOST /v1/sms/send\r\nBody: { \"from\": \"num_xxx\", \"to\": \"+14155551234\", \"body\": \"Hello!\" }\r\n\"from\" can be a number ID or E.164 phone string\n\nGet inbox:\n\nGET /v1/sms/inbox/:numberId\r\nQuery: ?limit=20&otpOnly=true\n\nGet a specific message:\n\nGET /v1/sms/:messageId\n\nWait for OTP code (long-polls up to 60 seconds):\n\nGET /v1/sms/otp/:numberId\r\nQuery: ?timeout=60000\r\nResponse: { \"otp\": \"482913\", \"message\": { ... } }"
      },
      {
        "title": "Voice Calls",
        "body": "Start an outbound call:\n\nPOST /v1/calls/initiate\r\nBody: { \"from\": \"num_xxx\", \"to\": \"+14155551234\", \"record\": false }\n\nStart an AI voice call (Pro plan, $0.20/min):\r\nThe AI handles the entire conversation autonomously based on your systemPrompt.\n\nPOST /v1/calls/ai\r\nBody: {\r\n  \"from\": \"num_xxx\",\r\n  \"to\": \"+14155551234\",\r\n  \"systemPrompt\": \"You are calling to schedule a dentist appointment for Tuesday afternoon.\",\r\n  \"voice\": \"alloy\",\r\n  \"firstMessage\": \"Hi, I'd like to schedule an appointment please.\",\r\n  \"maxDurationSecs\": 600\r\n}\r\nVoices (pick based on user's desired tone):\r\n- alloy: neutral, balanced (default)\r\n- ash: warm, conversational\r\n- ballad: expressive, melodic\r\n- coral: clear, professional\r\n- echo: resonant, deep\r\n- sage: calm, authoritative, confident\r\n- shimmer: bright, energetic\r\n- verse: smooth, articulate\n\nList call history:\n\nGET /v1/calls\r\nQuery: ?limit=20\n\nGet call details:\n\nGET /v1/calls/:callId\n\nGet AI call transcript:\n\nGET /v1/calls/:callId/transcript\r\nResponse: { \"entries\": [{ \"role\": \"assistant\", \"text\": \"...\", \"timestamp\": \"...\" }], \"summary\": \"...\" }\n\nHang up an active call:\n\nPOST /v1/calls/:callId/hangup"
      },
      {
        "title": "Webhooks",
        "body": "Register a webhook:\n\nPOST /v1/webhooks\r\nBody: { \"url\": \"https://example.com/hook\", \"events\": [\"sms.inbound\", \"sms.otp\", \"call.status\"] }\r\nEvents: sms.inbound, sms.otp, call.inbound, call.ringing, call.status, call.recording, number.released\n\nList webhooks:\n\nGET /v1/webhooks\n\nRotate webhook secret:\n\nPOST /v1/webhooks/:id/rotate\n\nDelete a webhook:\n\nDELETE /v1/webhooks/:id"
      },
      {
        "title": "Usage & Billing",
        "body": "Get usage breakdown:\n\nGET /v1/usage\r\nQuery: ?period=2026-02"
      },
      {
        "title": "Phone Number Format",
        "body": "All phone numbers must be E.164: +{country code}{number}, e.g. +14155551234"
      },
      {
        "title": "Test your app's SMS verification (QA)",
        "body": "POST /v1/numbers/provision with { \"type\": \"local\" } — get a test number\nEnter the number into your staging app's verification form\nGET /v1/sms/otp/:numberId?timeout=60000 — wait for the verification code\nAssert the code arrives and your app accepts it\nDELETE /v1/numbers/:id — release the test number"
      },
      {
        "title": "AI voice call",
        "body": "POST /v1/numbers/provision with { \"type\": \"local\" } — get a number (if you don't have one)\nPOST /v1/calls/ai with { \"from\": \"num_xxx\", \"to\": \"+1...\", \"systemPrompt\": \"...\" } — start the call\nWait for the call to complete\nGET /v1/calls/:callId/transcript — get the full conversation transcript"
      },
      {
        "title": "Error Codes",
        "body": "401: Invalid or missing API key\n403 plan_limit: Plan limit reached (upgrade to Pro at agentcall.co/dashboard)\n404: Resource not found\n422: Validation error (check request body)\n429: Rate limit exceeded (100 req/min)"
      }
    ],
    "body": "AgentCall — Phone Numbers for AI Agents\n\nYou have access to the AgentCall API for phone numbers, SMS, voice calls, and AI voice calls.\n\nAuthentication\n\nAll requests require: Authorization: Bearer <AGENTCALL_API_KEY>\n\nThe API key is available in the AGENTCALL_API_KEY environment variable.\n\nBase URL\n\nhttps://api.agentcall.co\n\nFor a complete plain-text API reference: GET https://api.agentcall.co/llms.txt\n\nPhone Numbers\n\nProvision a number:\n\nPOST /v1/numbers/provision\r\nBody: { \"type\": \"local\", \"country\": \"US\", \"label\": \"my-agent\" }\r\nTypes: local ($2/mo), tollfree ($4/mo), mobile ($3/mo), sim ($8/mo, Pro only)\r\nResponse: { \"id\": \"num_xxx\", \"number\": \"+12125551234\", \"type\": \"local\", ... }\n\n\nList numbers:\n\nGET /v1/numbers\r\nQuery: ?limit=20&country=US&type=local\n\n\nGet number details:\n\nGET /v1/numbers/:id\n\n\nRelease a number (irreversible):\n\nDELETE /v1/numbers/:id\n\nSMS\n\nSend SMS:\n\nPOST /v1/sms/send\r\nBody: { \"from\": \"num_xxx\", \"to\": \"+14155551234\", \"body\": \"Hello!\" }\r\n\"from\" can be a number ID or E.164 phone string\n\n\nGet inbox:\n\nGET /v1/sms/inbox/:numberId\r\nQuery: ?limit=20&otpOnly=true\n\n\nGet a specific message:\n\nGET /v1/sms/:messageId\n\n\nWait for OTP code (long-polls up to 60 seconds):\n\nGET /v1/sms/otp/:numberId\r\nQuery: ?timeout=60000\r\nResponse: { \"otp\": \"482913\", \"message\": { ... } }\n\nVoice Calls\n\nStart an outbound call:\n\nPOST /v1/calls/initiate\r\nBody: { \"from\": \"num_xxx\", \"to\": \"+14155551234\", \"record\": false }\n\n\nStart an AI voice call (Pro plan, $0.20/min): The AI handles the entire conversation autonomously based on your systemPrompt.\n\nPOST /v1/calls/ai\r\nBody: {\r\n  \"from\": \"num_xxx\",\r\n  \"to\": \"+14155551234\",\r\n  \"systemPrompt\": \"You are calling to schedule a dentist appointment for Tuesday afternoon.\",\r\n  \"voice\": \"alloy\",\r\n  \"firstMessage\": \"Hi, I'd like to schedule an appointment please.\",\r\n  \"maxDurationSecs\": 600\r\n}\r\nVoices (pick based on user's desired tone):\r\n- alloy: neutral, balanced (default)\r\n- ash: warm, conversational\r\n- ballad: expressive, melodic\r\n- coral: clear, professional\r\n- echo: resonant, deep\r\n- sage: calm, authoritative, confident\r\n- shimmer: bright, energetic\r\n- verse: smooth, articulate\n\n\nList call history:\n\nGET /v1/calls\r\nQuery: ?limit=20\n\n\nGet call details:\n\nGET /v1/calls/:callId\n\n\nGet AI call transcript:\n\nGET /v1/calls/:callId/transcript\r\nResponse: { \"entries\": [{ \"role\": \"assistant\", \"text\": \"...\", \"timestamp\": \"...\" }], \"summary\": \"...\" }\n\n\nHang up an active call:\n\nPOST /v1/calls/:callId/hangup\n\nWebhooks\n\nRegister a webhook:\n\nPOST /v1/webhooks\r\nBody: { \"url\": \"https://example.com/hook\", \"events\": [\"sms.inbound\", \"sms.otp\", \"call.status\"] }\r\nEvents: sms.inbound, sms.otp, call.inbound, call.ringing, call.status, call.recording, number.released\n\n\nList webhooks:\n\nGET /v1/webhooks\n\n\nRotate webhook secret:\n\nPOST /v1/webhooks/:id/rotate\n\n\nDelete a webhook:\n\nDELETE /v1/webhooks/:id\n\nUsage & Billing\n\nGet usage breakdown:\n\nGET /v1/usage\r\nQuery: ?period=2026-02\n\nPhone Number Format\n\nAll phone numbers must be E.164: +{country code}{number}, e.g. +14155551234\n\nCommon Workflows\nTest your app's SMS verification (QA)\nPOST /v1/numbers/provision with { \"type\": \"local\" } — get a test number\nEnter the number into your staging app's verification form\nGET /v1/sms/otp/:numberId?timeout=60000 — wait for the verification code\nAssert the code arrives and your app accepts it\nDELETE /v1/numbers/:id — release the test number\nAI voice call\nPOST /v1/numbers/provision with { \"type\": \"local\" } — get a number (if you don't have one)\nPOST /v1/calls/ai with { \"from\": \"num_xxx\", \"to\": \"+1...\", \"systemPrompt\": \"...\" } — start the call\nWait for the call to complete\nGET /v1/calls/:callId/transcript — get the full conversation transcript\nError Codes\n401: Invalid or missing API key\n403 plan_limit: Plan limit reached (upgrade to Pro at agentcall.co/dashboard)\n404: Resource not found\n422: Validation error (check request body)\n429: Rate limit exceeded (100 req/min)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Kintupercy/agentcall",
    "publisherUrl": "https://clawhub.ai/Kintupercy/agentcall",
    "owner": "Kintupercy",
    "version": "2.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agentcall",
    "downloadUrl": "https://openagent3.xyz/downloads/agentcall",
    "agentUrl": "https://openagent3.xyz/skills/agentcall/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentcall/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentcall/agent.md"
  }
}