Telegram Group Chat Setup

PassAudited by ClawScan on May 10, 2026.

Overview

The skill does what it claims, but it will change persistent Telegram gateway settings and uses the bot token to query Telegram.

Use this skill only when you intentionally want to connect a MoltBot agent to a Telegram group. Before applying the patch, verify the group ID, allowed users, mention patterns, and current gateway config; protect the Telegram bot token; and make sure group members understand that disabling Telegram privacy mode lets the bot see group messages for context.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill can access a Telegram bot token from local configuration. That is expected for this setup, but the token is sensitive because it represents bot account authority.

Why it was flagged

The helper reads a local gateway config, extracts the Telegram bot token, and sends it to Telegram's official Bot API to identify the bot.

Skill content
CONFIG_PATH="${CLAWDBOT_CONFIG_PATH:-$HOME/.clawdbot/moltbot.json}" ... token = tg.get('botToken', '') ... curl -s "https://api.telegram.org/bot${BOT_TOKEN}/getMe"
Recommendation

Run this only in a trusted environment, verify the config path, and avoid sharing logs or command output that could expose the bot token.

What this means

A wrong group ID, allowed-user list, or mention pattern could make the bot respond in the wrong group or to the wrong people.

Why it was flagged

The skill instructs the agent to modify gateway routing and response-gating configuration for Telegram groups.

Skill content
Use the `gateway` tool with `action: "config.patch"` ... `groupAllowFrom`: ["<user1>", "<user2>"] ... `mentionPatterns`: ["@bot_username", "bot_name", "@bot_name"]
Recommendation

Review the exact gateway patch before applying it, confirm the group ID and allowed users, and keep a backup of the current gateway config.

What this means

People in the Telegram group may have their messages visible to the bot for context, not just messages that directly mention it.

Why it was flagged

The setup intentionally routes Telegram group messages into the bot context after privacy mode is disabled, even though responses are gated by mentions.

Skill content
With privacy mode OFF + `requireMention: true` in MoltBot config, the bot sees all messages (for context) but only responds when mentioned.
Recommendation

Only disable Telegram privacy mode for groups where members understand the bot can read group messages, and keep `requireMention` and sender allowlists enabled.