From telegram-cli
Forwards single or batch messages between Telegram chats using message IDs. Retrieve IDs first with 'read <chat> -n <count>' command, then 'forward <from> <ids> <to>'.
npx claudepluginhub terrylica/cc-skillsThis skill is limited to using the following tools:
Forward one or multiple messages between chats.
Forwards single or batch Telegram messages between chats using tg-cli.py script. Obtain message IDs via read command; supports comma-separated IDs for multiples.
Deletes one or multiple messages from Telegram chats for everyone (default) or self only. Find message IDs first with read command, then delete by comma-separated IDs.
Automates Telegram bot tasks via Rube MCP (Composio): send messages, manage chats, share photos/documents, handle commands. Use for Telegram integrations with active bot connections.
Share bugs, ideas, or general feedback.
Forward one or multiple messages between chats.
/usr/bin/env bash << 'EOF'
SCRIPT="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/telegram-cli}/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
read to find message IDs: read <chat> -n 10forward <from> <id> <to>| Parameter | Type | Description |
|---|---|---|
| from_chat | string/int | Source chat |
| message_ids | string | Message ID(s), comma-separated |
| to_chat | string/int | Destination chat |