用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill telegram-notify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
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 职业分类
| name | telegram-notify |
| version | 1.0.0 |
| description | Send Telegram messages, alerts, and files to users or groups via Bot API. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["telegram","notifications","alerts"] |
| env_needed | [{"name":"TELEGRAM_BOT_TOKEN","description":"Bot token from @BotFather","required":true},{"name":"TELEGRAM_CHAT_ID","description":"Target chat/group/channel ID (use @channelusername or numeric ID)","required":true}] |
| metadata | {"zeptoclaw":{"emoji":"✈️","requires":{"anyBins":["curl","jq"]}}} |
Send messages, alerts, files, and formatted reports to any Telegram chat using your bot.
/newbot → copy the tokencurl https://api.telegram.org/bot$TOKEN/getUpdates | jq '.result[0].message.chat.id'export TELEGRAM_BOT_TOKEN="7123456789:AAFxxx..."
export TELEGRAM_CHAT_ID="-1001234567890"
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d text="🚨 Server CPU > 90% on prod-1" \
-d parse_mode="HTML" | jq -r '.ok'
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d parse_mode="HTML" \
-d text="<b>Daily Report</b>
Orders: <code>142</code>
Revenue: <code>RM 4,210</code>
Status: ✅ All systems normal" | jq -r '.ok'
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendDocument" \
-F chat_id="$TELEGRAM_CHAT_ID" \
-F document=@"/path/to/report.pdf" \
-F caption="Weekly sales report" | jq -r '.ok'
MSG_ID=$(curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d text="⚠️ Maintenance window tonight 2-4AM" | jq -r '.result.message_id')
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/pinChatMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d message_id="$MSG_ID" | jq -r '.ok'
<b>, <i>, <code>, <pre>, <a href="..."> — escape <>& in content@channelusername or numeric ID starting with -100-d disable_notification=true