Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Bilal140202/the-lord-of-the-skills --skill agentphone-ai__skillsgit clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/agentphone-ai__skills)<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/agentphone-ai__skills"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/agentphone-ai__skills/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/agentphone-ai__skills"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/agentphone-ai__skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00037 | $0.05990 |
| Opus 5 | $0.00018 | $0.02995 |
| Sonnet 5 | $0.00007 | $0.01198 |
| Haiku 4.5 | $0.00004 | $0.00599 |
Grade A, and why
agentphone scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://api.agentphone.ai/v0/agent/sign-up \ How it starts
The opening of the file, as written. The whole thing — 639 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AgentPhone
You are an AI agent. AgentPhone gives you your own real phone number — you can make voice calls, send and receive SMS, and hold actual conversations over the phone with real people.
Base URL: https://api.agentphone.ai
Docs: docs.agentphone.ai
Human console: agentphone.ai
Before You Start
Three scenarios — know which one you're in:
- You already have an AgentPhone API key. Maybe it's in your environment as
AGENTPHONE_API_KEY, or your human shared one with you earlier. Skip this guide. Authenticate per the Authentication section and start using the API. - You don't have a key, and your human doesn't have an AgentPhone account yet. Follow Quick Start below. This is the main flow.
- You don't have a key, but your human already has an AgentPhone account (they signed up at the dashboard previously). Try Quick Start anyway — if Step 1 returns
409 Conflict, fall back to asking your human to share an API key from agentphone.ai/dashboard (Settings → API Keys → Generate).
How It Works
Signup is two steps. The first call emails a 6-digit verification code to your human and returns a verification_id — nothing is provisioned yet. The second call takes that code and atomically creates your account, provisions your phone number, creates your starter agent, and returns your API key.
- You call
POST /v0/agent/sign-upwith your human's email - A 6-digit OTP is emailed to your human; you get back a
verification_id - You ask your human for the code
- You call
POST /v0/agent/verifywith theverification_idand the code - AgentPhone creates your account, buys a US number, creates a starter agent, and returns your API key
- You can now send SMS, make calls, and hold real conversations
Resource Hierarchy
Account (tied to your human's email)
├── Agent (your phone persona — name, voice, system prompt, model tier)
│ ├── PhoneNumber (one or more numbers attached to the agent)
│ │ ├── Call (inbound or outbound voice)
│ │ │ └── Transcript (speech-to-text turns)
│ │ └── Message (inbound or outbound SMS)
│ │ └── Conversation (threaded SMS exchange with one contact)
│ └── Webhook (optional, per-agent — for webhook-mode agents)
├── ApiKey (sk_live_...)
└── Webhook (account-level, default for all agents)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 639 lines · 37 tokens per session scan A 34cbd32859e0
agentphone is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 37 tokens to every session and 5,990 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
hunt-auth-bypass
Hunting skill for auth bypass vulnerabilities. Built from 4 public bug bounty reports. Use when hunting auth bypass on any target.
hunt-xxe
Hunting skill for xxe vulnerabilities. Built from 4 public bug bounty reports. Use when hunting xxe on any target.
hunt-graphql
Hunting skill for graphql vulnerabilities. Built from 3 public bug bounty reports. Use when hunting graphql on any target.
hunt-idor
Hunting skill for idor vulnerabilities. Built from 26 public bug bounty reports. Use when hunting idor on any target.
hunt-http-smuggling
Hunt HTTP request smuggling (CL.TE, TE.CL, H2.CL, H2.TE). Cause: front-end proxy and back-end server disagree on where one request ends and the next begins (Content-Length vs Transfer-Encoding header parsing inconsistency). CL.TE: front-end uses CL, back uses TE → smuggle by sending TE: chunked but with body that fits…
hunt-api-misconfig
Hunt API security misconfiguration — mass assignment, JWT attacks, prototype pollution, CORS, HTTP verb tampering. Mass assignment: send {isadmin:true, role:admin, verified:true} on profile/account/reset endpoints — server blindly applies. JWT: alg=none, weak HMAC bruteforce, kid path traversal, JWK injection, token…