[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-94547":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":13,"contributorsCount":13,"subscribersCount":13,"size":13,"stars1d":13,"stars7d":13,"stars30d":13,"stars90d":13,"forks30d":13,"starsTrendScore":13,"compositeScore":15,"rankGlobal":10,"rankLanguage":10,"license":16,"archived":17,"fork":17,"defaultBranch":18,"hasWiki":17,"hasPages":17,"topics":19,"createdAt":10,"pushedAt":10,"updatedAt":34,"readmeContent":35,"aiSummary":36,"trendingCount":13,"starSnapshotCount":13,"syncStatus":37,"lastSyncTime":38,"discoverSource":39},94547,"skills","sv-number\u002Fskills","sv-number","Give your AI agent a phone number: order a private number in 200+ countries over the API, read the SMS verification code, hand the number back. The widest country coverage in the category, checkable with one API call.","https:\u002F\u002Fsms-verification-number.com\u002Fen\u002Fnumber-for-ai-agents\u002F",null,"Python",70,0,1,40,"MIT License",false,"main",[20,21,22,23,24,25,26,27,28,29,30,31,32,33],"agent-skill","agent-skills","ai-agents","anthropic","automation","claude","claude-code","claude-skill","codex","otp","phone-verification","sms","sms-verification","virtual-phone-number","2026-08-24 04:01:22","# SV Number agent skill\n\nYour agent hits a signup wall: \"we sent a code to your phone\". It has no phone. This skill\ngives it one on demand, in the country the service expects, and reads the code back over\nthe API.\n\nOne markdown file. No SDK, no dashboard, no human at the keyboard.\n\n```\n> Read the sv-number skill and register me a Telegram account on an Indonesian number.\n\n  ordered +62 838 1234 5678\n  code 123456\n  account created\n```\n\n## What it lets an agent do\n\n### Sign up anywhere, not just where you live\n\nMost verification checks look at the country the number came from. An Indonesian\nmarketplace refuses a US number before the SMS is even sent. The agent names the country in\nthe request and that whole class of failure disappears.\n\nThe catalogue carries 200+ countries, the widest coverage in this category. You do not have\nto take that on faith, and you should not: one call returns the list, so count it yourself.\n\n```bash\ncurl -s \"https:\u002F\u002Fsms-verification-number.com\u002Fstubs\u002Fhandler_api?api_key=$SVN_API_KEY\\\n&action=getCountryAndOperators&lang=en\" | jq length\n```\n\n### Read the code, not an inbox\n\nThe API returns the verification code itself, already parsed out of the message. There is\nno regex to write per service and nothing to fix when a service rewrites its wording.\n\n### Pay for the code, not for the month\n\nMoney is held when the number is ordered and charged when the code lands. Nothing in 20\nminutes and it returns to the balance by itself.\n\n### Keep the number private\n\nOne activation, one holder. Nobody else receives its codes, which is exactly the part that\nfree shared pools get wrong.\n\n### Steer by what the pool is doing, not by price\n\nThe catalogue call returns, per service and country, the share of codes that arrived for\nother users and how many numbers are live right now. Where the share is measured, an agent\nthat reads it stops paying for countries that never deliver; where it is not, the size of\nthe live pool tells the same story.\n\n### Finish the second factor too\n\nWhen the account asks for an authenticator, the agent stores the TOTP secret next to its\nAPI key and computes the six digits locally, by RFC 6238. The secret never leaves the\nmachine.\n\n## Start\n\n```bash\ncurl -O https:\u002F\u002Fraw.githubusercontent.com\u002Fsv-number\u002Fskills\u002Fmain\u002Fsv-number\u002FSKILL.md\nexport SVN_API_KEY=your_key_here\n```\n\nThe layout follows the [Agent Skills specification](https:\u002F\u002Fagentskills.io\u002Fspecification):\na directory named after the skill, holding `SKILL.md` and `scripts\u002F`. Point any runner at\nit and it works as is, in Claude Code, Codex or anything else that reads a skill. The key comes from\n[your profile](https:\u002F\u002Fsms-verification-number.com\u002Fen\u002Fuser\u002Fprofile\u002F) after\n[signup](https:\u002F\u002Fsms-verification-number.com\u002Fen\u002Fregister\u002F). The balance has to be funded:\nthere is no free tier on this API.\n\n## The cycle\n\n```\ngetNumber   -> ACCESS_NUMBER:id:phone      order a number, money is held\ngetStatus   -> STATUS_WAIT_CODE            poll every 3 to 5 seconds\n            -> STATUS_OK:123456            the code\nsetStatus 6 -> ACCESS_ACTIVATION           done, the charge stays\nsetStatus 8 -> ACCESS_CANCEL               nothing came, money back\n```\n\nRunnable versions: [`sv-number\u002Fscripts\u002Forder_number.py`](sv-number\u002Fscripts\u002Forder_number.py)\nand [`sv-number\u002Fscripts\u002Forder_number.mjs`](sv-number\u002Fscripts\u002Forder_number.mjs).\n\n## What it is not\n\nReceiving codes is the whole job. These numbers do not send SMS and do not take calls, and\nthey are not for banking, payment or government accounts. If your agent needs a permanent\nnumber that holds a conversation with people, you want a carrier product instead.\n\n## Rules the skill enforces\n\nThe API key stays in the agent's environment and goes nowhere else. An activation is used\nfor the service it was ordered under, because that is what keeps delivery rates high for\neveryone. Every activation gets closed: `setStatus 6` when the code was used, `setStatus 8`\nwhen nothing arrived. A forgotten activation holds money until it expires.\n\n## Links\n\n- Skill file: [`sv-number\u002FSKILL.md`](sv-number\u002FSKILL.md)\n- The same skill as a page: https:\u002F\u002Fsms-verification-number.com\u002Fen\u002Fagent-skill\u002F\n- Full API reference: https:\u002F\u002Fsms-verification-number.com\u002Fen\u002Fapi-sms-activate\u002F\n- Live coverage and prices: https:\u002F\u002Fsms-verification-number.com\u002Fen\u002Fnumber-for-ai-agents\u002F\n\nMIT for the skill and the examples. The service behind it is commercial.\n","sv-number\u002Fskills 是一个为 AI 智能体提供按需虚拟手机号与短信验证码自动识别能力的轻量级技能模块。它支持 200+ 国家\u002F地区的本地化号码订购、实时 SMS 验证码提取（无需正则解析）、按成功接收计费、号码独占使用，并内置 TOTP 二次验证支持。基于标准化 Agent Skills 规范，仅需一个 Markdown 文件和 API Key 即可集成，无 SDK 或控制台依赖。适用于需要自动化完成跨国网站\u002F应用注册、账号开通及多因素认证的 AI agent 场景，尤其适合在 Claude Code、Codex 等支持技能协议的智能体运行时中部署。",2,"2026-08-12 02:30:03","CREATED_QUERY"]