# Send Telegram Bot Manager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "telegram-bot-manager",
    "name": "Telegram Bot Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/362224222/telegram-bot-manager",
    "canonicalUrl": "https://clawhub.ai/362224222/telegram-bot-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/telegram-bot-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-bot-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "QUICKSTART.md",
      "README.md",
      "RELEASE_NOTES.md",
      "SKILL.md",
      "metadata.json",
      "references/OPENCLAW_CONFIG.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "telegram-bot-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T19:39:18.606Z",
      "expiresAt": "2026-05-16T19:39:18.606Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-bot-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-bot-manager",
        "contentDisposition": "attachment; filename=\"telegram-bot-manager-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "telegram-bot-manager"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/telegram-bot-manager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/telegram-bot-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/telegram-bot-manager",
    "agentUrl": "https://openagent3.xyz/skills/telegram-bot-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/telegram-bot-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/telegram-bot-manager/agent.md"
  }
}
```
## Documentation

### Setup a new Telegram bot

Create bot via BotFather

Message @BotFather on Telegram
Use /newbot command
Follow prompts for bot name and username
Copy the bot token (format: 1234567890:ABCdefGHIjklMNOpqrsTUVwxyz)



Configure in OpenClaw

Add token to OpenClaw config
Enable Telegram plugin
Set up pairing mode for DM access

### Validate bot configuration

# Test Telegram API connectivity
curl -I https://api.telegram.org

# Check bot token validity
curl -s "https://api.telegram.org/bot<YOUR_TOKEN>/getMe"

### Troubleshooting connectivity issues

When api.telegram.org is unreachable:

Check network access
curl -I -m 10 https://api.telegram.org



Verify DNS resolution
nslookup api.telegram.org



Test alternative endpoints
curl -I https://telegram.org

### Configuring OpenClaw Telegram integration

See OPENCLAW_CONFIG.md for detailed configuration steps.

### Bot token security

Never commit bot tokens to version control
Store tokens in environment variables or secure config files
Rotate tokens if compromised
Use different tokens for different environments (dev/prod)

### Bot Commands Reference

Common Telegram bot commands for BotFather:

/newbot - Create a new bot
/mybots - Manage your bots
/setdescription - Set bot description
/setabouttext - Set about text
/setuserpic - Set bot profile picture
/setcommands - Set bot commands
/token - Generate new token
/revoke - Revoke current token
/setprivacy - Configure privacy mode

### Webhook (Recommended for production)

Bot receives updates via HTTP POST
Requires public HTTPS endpoint
More efficient for high-volume bots

### Polling (Good for development)

Bot continuously checks for updates
Simpler setup, no public endpoint needed
Easier to debug locally

See WEBHOOK_SETUP.md for webhook configuration.

### Common errors and solutions

"Connection timed out"

Check firewall rules
Verify proxy configuration
Test with different network

"Invalid token"

Verify token format (should contain colon)
Check for extra spaces or characters
Regenerate token if needed

"Bot not responding"

Verify bot is not blocked
Check bot privacy settings
Ensure bot has proper permissions

### Manual testing

Search for your bot username on Telegram
Start a conversation with /start
Test basic commands

### Automated testing

Use the test script in scripts/test_bot.py for automated validation.

### References

Telegram Bot API Documentation
BotFather Documentation
OpenClaw Configuration Guide
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 362224222
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T19:39:18.606Z
- Expires at: 2026-05-16T19:39:18.606Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/telegram-bot-manager)
- [Send to Agent page](https://openagent3.xyz/skills/telegram-bot-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/telegram-bot-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/telegram-bot-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/telegram-bot-manager)