Agent Skills: Forward Telegram Messages

Forward messages between Telegram chats. Supports single or batch forwarding. TRIGGERS - telegram forward, forward telegram message, telegram relay, telegram copy message

UncategorizedID: terrylica/cc-skills/forward-message

Install this agent skill to your local

pnpm dlx add-skill https://github.com/terrylica/cc-skills/tree/HEAD/plugins/tlg/skills/forward-message

Skill Files

Browse the full folder contents for forward-message.

Download Skill

Loading file tree…

plugins/tlg/skills/forward-message/SKILL.md

Skill Metadata

Name
forward-message
Description
"Forward messages between Telegram chats. Supports single or batch forwarding. TRIGGERS - telegram forward, forward telegram message, telegram relay, telegram copy message"

Forward Telegram Messages

Forward one or multiple messages between chats.

Usage

/usr/bin/env bash << 'EOF'
SCRIPT="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/tlg}/scripts/send.py"

# Forward single message
uv run --python 3.13 "$SCRIPT" forward <from_chat> <message_id> <to_chat>

# Forward multiple messages (comma-separated IDs)
uv run --python 3.13 "$SCRIPT" forward 2124832490 471920,471921 90417581

# Get message IDs first with read command
uv run --python 3.13 "$SCRIPT" read <chat> -n 5
EOF

Workflow

  1. Use read to find message IDs: read <chat> -n 10
  2. Forward by ID: forward <from> <id> <to>

Parameters

| Parameter | Type | Description | | ----------- | ---------- | ------------------------------ | | from_chat | string/int | Source chat | | message_ids | string | Message ID(s), comma-separated | | to_chat | string/int | Destination chat |