Telegram Bot Builder
Telegram Bot 快速build工具 - Keyboard、Inline Buttons、Webhook、Auto-reply、Group管理
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 929 · 9 current installs · 11 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (Telegram bot builder) matches the SKILL.md content: BotFather, keyboards, webhooks, auto-reply and group management are all relevant and present. Nothing in the manifest asks for unrelated access.
Instruction Scope
SKILL.md contains only high-level guidance and example JSON for inline keyboards plus use cases and basic error handling. It does not instruct the agent to read arbitrary files, access unrelated system state, or transmit data to unexpected endpoints.
Install Mechanism
No install spec and no code files — instruction-only. There is nothing written to disk or downloaded by the skill itself.
Credentials
The skill declares no required environment variables or credentials, which is consistent with being instruction-only. Note: in practice building a Telegram bot requires a Bot token (from BotFather) and possibly other API keys (for payments or exchange integrations). The skill does not document or request where those secrets should be stored, which is a transparency/usability omission but not an active risk in the skill manifest itself.
Persistence & Privilege
always is false and there are no special persistence or system-wide config changes. disable-model-invocation is false (normal), so the agent may call the skill autonomously — expected for skills and not a problem here.
Assessment
This skill is a short, high-level guide for building Telegram bots and appears coherent. Before using it: (1) expect the agent or the bot code to request your Telegram BOT_TOKEN — never paste tokens into public chat; store them in your platform's secret manager. (2) If you implement payments or a crypto trading bot, those will require additional API keys and have real financial risk — use least-privilege API keys and test in sandboxes. (3) Because the skill is instruction-only, it won't install code for you; if you follow its advice, review any third-party libraries or deployment steps you use. (4) If you plan to let an autonomous agent act with these instructions, limit its permissions and review any outgoing webhook URLs or integrations before enabling them.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Telegram Bot Builder
快速整Telegram Bot既技能。
功能
- 🤖 Bot Setup (BotFather)
- ⌨️ Reply/Inline Keyboards
- 👥 Group Management
- 🔗 Webhook Integration
- 📩 Auto-reply / Filters
- 💰 Payment (Stars)
常用Code
# Inline Keyboard
{
"inline_keyboard": [
[{"text": "✅ Yes", "callback_data": "yes"}],
[{"text": "❌ No", "callback_data": "no"}]
]
}
Use Cases
- Customer Support Bot
- Order/Booking System
- Crypto Trading Bot
- Content Subscription
- Quiz/Poll Bot
Error Handling
- Handle "Bot was blocked"
- Rate limiting (30 msg/sec)
- Chat permission checks
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
