用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill twilio-sms命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Give your agent a standalone on-chain wallet for gasless trades, funding, and autonomous x402 M2M payments.
Deploy ERC20 tokens on Base, Ethereum, Arbitrum, and other EVM chains using the Clanker SDK. Use when the user wants to deploy a new token, create a memecoin, set up token vesting, configure airdrops, manage token rewards, claim LP fees, or update token metadata. Supports V4 deployment with vaults, airdrops, dev buys, custom market caps, vanity addresses, and multi-chain deployment.
AI-powered crypto trading agent and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances, view token prices, transfer crypto, manage NFTs, use leverage, bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, and Unichain.
基于 SOC 职业分类
正在显示 SKILL.md
| name | twilio-sms |
| version | 1.0.0 |
| description | Send and manage SMS messages via the Twilio API. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["twilio","sms","messaging","communication"] |
| env_needed | [{"name":"TWILIO_ACCOUNT_SID","description":"Account SID from twilio.com/console","required":true},{"name":"TWILIO_AUTH_TOKEN","description":"Auth Token from twilio.com/console","required":true},{"name":"TWILIO_FROM_NUMBER","description":"Your Twilio phone number (E.164 format: +1234567890)","required":true}] |
| metadata | {"zeptoclaw":{"emoji":"📱","requires":{"anyBins":["curl","jq"]}}} |
Send, check, and list SMS messages using the Twilio API.
export TWILIO_ACCOUNT_SID="ACxxx..."
export TWILIO_AUTH_TOKEN="xxx..."
export TWILIO_FROM_NUMBER="+1234567890"
curl -s -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
-d "From=$TWILIO_FROM_NUMBER" \
-d "To=+60123456789" \
-d "Body=Hello from ZeptoClaw!" \
| jq '{sid, status, to, body}'
MSG_SID="SMxxx..."
curl -s "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages/$MSG_SID.json" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
| jq '{sid, status, to, dateSent: .date_sent, errorCode: .error_code}'
curl -s "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json?PageSize=10" \
-u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
| jq '.messages[] | {sid, from, to, body, status, date_sent}'
+[country code][number]+60+60123456789queued, sent, delivered, failed, undelivered-u SID:token) not Bearer tokens