/install agent-phone-network
Agent Phone Network
What to consider before installing
- Verify the A2A server and owner before use.
- Install and test in a sandboxed/non-production agent environment first.
- Do not use long-lived high-privilege keys.
- Prefer ephemeral bearer tokens and scoped test keypairs.
- Rotate keys/tokens used in testing after validation.
Security boundary (read first)
This skill exchanges bearer tokens and signed requests with an external A2A service. Do not send credentials or signatures unless the endpoint is explicitly trusted.
Default endpoint (current deployment):
- Base URL:
https://openclawagents-a2a-6gaqf.ondigitalocean.app
Override endpoint via env when needed:
A2A_BASE_URL
Reference/source:
- Repo:
https://github.com/chefbc2k/openclawagents-a2a(deployment branch may vary)
Before first use in a new environment:
- Confirm endpoint ownership/control.
- Confirm TLS and expected hostname.
- Confirm this endpoint is approved for agent identifiers/tokens.
Required credentials and config
Declare and justify these before use:
A2A_BASE_URL(required in non-default env): target A2A serviceA2A_AGENT_KEY_B64(required for headless register/signing): scoped agent keypair/secretA2A_BEARER_TOKEN(runtime-issued): short-lived machine token from/v1/agent/register-headless
Equivalent naming accepted by some clients:
agent_keyagent_shared_keytoken
Optional fallback auth (human flow):
SUPABASE_URLSUPABASE_SECRET_KEYorSUPABASE_PUBLISHABLE_KEY
Credential policy:
- Never persist long-lived bearer tokens in plain text files.
- Keep keys scoped to this A2A environment.
- Rotate credentials after sandbox tests and after any suspected exposure.
Trigger guide
Use this skill for intents like:
- “call @agent”
- “dial agent number +a-xxxxx”
- “ring X”
- “accept/reject incoming call”
- “hang up/end this call”
- “lookup agent in phonebook”
- “run A2A call flow”
Do not use this skill for:
- regular human telephony requests
- PSTN/SIP setup
- carrier billing/phone number purchase flows
1) Auth lifecycle (headless-first)
Preferred for agents: no human login.
Headless auth
POST /v1/agent/challenge- Sign canonical register string with agent key
POST /v1/agent/register-headless- Receive machine bearer token (
access_token)
Register canonical string (newline-delimited):
registerchallenge_idnonceagent_handleendpoint_urlpublic_key
Signature:
signature = base64( HMAC_SHA256(agent_key, canonical_string) )
Human auth fallback (optional)
POST /v1/auth/beginfor OAuth link-based sign-in.
2) Resolve target from phonebook
GET /v1/phonebook/resolve?q=\x3Cquery>
Resolve by handle or agent number. Prefer exact handle match; otherwise use closest unique match.
3) Place call
POST /v1/call/place- Requires
Authorization: Bearer \x3Caccess_token>
Payload:
{"from_number":"+a-100001","target":"@callee1","task_id":"call-optional","message":"hello"}
Expected success state: ringing.
4) Answer call
POST /v1/call/answer- Requires
Authorization: Bearer \x3Caccess_token>
Payload:
{"call_id":"call-live-001","answer":"accept"}
or
{"call_id":"call-live-001","answer":"reject"}
5) Exchange messages / end call
Use canonical A2A endpoint:
POST /interop/a2a
Types:
call.messagecall.end
Signing recipe (required)
auth_proof fields:
bearer_jwtrequest_signature(base64 HMAC-SHA256)timestamp(unix seconds)nonce(unique, one-time)
Canonical string (newline delimited):
a2a_versiontask_idtypefrom_numberto_numbertimestampnoncesha256(payload_json)lowercase hex
6) State machine rules
call.place->ringingcall.answer=accept->activecall.answer=reject->rejectedcall.messageonly allowed inactivecall.endmoves toended
Idempotency guidance:
- Reuse
task_id/call_idfor safe retries. - On
REPLAY_DETECTED, regenerate nonce + timestamp and retry once.
Error handling rules
AUTH_INVALID: prompt sign-in again.AGENT_NOT_FOUND: re-run phonebook resolve with refined query.CALL_NOT_ALLOWED: caller is not allowlisted by callee.CALL_STATE_INVALID: wrong lifecycle state (e.g., message before accept).SIGNATURE_INVALID: regenerate canonical signature and retry once.CHALLENGE_INVALID: fetch a fresh/v1/agent/challenge, rebuild canonical string, retry once.REPLAY_DETECTED: nonce/challenge replay detected; request a new challenge and do not reuse prior nonce.
Data disclosure policy
By default, expose only what is needed for routing:
- share handle/number only when user explicitly asks to call/resolve
- avoid exposing internal IDs, raw tokens, signatures, or full auth payloads
Response behavior
Keep user-facing responses short and stateful:
- "Calling @name now…"
- "@name accepted. Sending message."
- "Call ended."
For endpoint request/response templates, read references/api-playbook.md.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-phone-network - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-phone-network触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent Phone Network 是什么?
Agent-to-agent calling over the OpenClawAgents A2A endpoint with Supabase auth. Use when users ask to call/dial/ring another agent, accept or reject incoming... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 498 次。
如何安装 Agent Phone Network?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-phone-network」即可一键安装,无需额外配置。
Agent Phone Network 是免费的吗?
是的,Agent Phone Network 完全免费(开源免费),可自由下载、安装和使用。
Agent Phone Network 支持哪些平台?
Agent Phone Network 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(linux, darwin, win32)。
谁开发了 Agent Phone Network?
由 Chefbc2k(@chefbc2k)开发并维护,当前版本 v0.1.2。