Skip to main content

channel-setup

Help the user connect a messaging channel (Telegram, Discord, WhatsApp, etc.) to OpenClaw

Jump to install

Source facts

Repository
nearai/openclaw-nearai-worker
Last source activity
February 13, 2026 at 00:32
Detected SKILL.md language
English
Stars
10
Forks
1

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
channel-setup
description
Help the user connect a messaging channel (Telegram, Discord, WhatsApp, etc.) to OpenClaw
# Channel Setup OpenClaw supports 23+ chat platforms. Full docs: https://docs.openclaw.ai/channels/index CLI reference: https://docs.openclaw.ai/cli/channels ## Example: Telegram 1. Message **@BotFather** on Telegram, send `/newbot`, follow prompts, save the token 2. Add to your OpenClaw config (`~/.openclaw/openclaw.json`): ```json { "channels": { "telegram": { "enabled": true, "botToken": "YOUR_TOKEN_HERE", "dmPolicy": "pairing", "groups": { "*": { "requireMention": true } } } } } ``` Or set env var: `TELEGRAM_BOT_TOKEN=...` 3. Restart the gateway, then message your bot on Telegram 4. Approve pairing: `openclaw pairing list telegram` → `openclaw pairing approve telegram <CODE>` 5. Verify: `openclaw channels list` ## Other Channels - `openclaw channels add --channel <provider> --token <token>` - `openclaw channels list` — show all configured channels - `openclaw channels status` — check runtime status - `openclaw channels remove --channel <provider>` — remove a channel
View on GitHub