telegram-list
telegram-list
List Telegram groups, channels, DMs, and forum topics.
Trigger Phrases
- "list Telegram groups"
- "what groups do I have on Telegram"
- "show my Telegram channels"
- "telegram list"
- "list topics in [group]"
- "list my Telegram DMs"
Description
This skill lists all accessible Telegram groups, channels, and DMs. DMs are included by default. For groups with forum topics enabled, you can also list the individual topics.
Usage
List all groups and DMs (default):
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py
List groups only (exclude DMs):
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py --no-dms
List topics in a specific group:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py --group 1234567890
Output as JSON:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py --json
Output Format
Table Output (default)
Found 5 groups/channels:
ID Type Members Topics Name
----------------------------------------------------------------------
1234567890 supergroup 1500 Yes My Community
9876543210 channel 5000 - News Channel
...
Found 3 DMs:
ID Type Username Name
------------------------------------------------------------
111222333 private @alice Alice Smith
444555666 private - Bob Jones
...
JSON Output (--json)
[
{
"id": 1234567890,
"name": "My Community",
"type": "supergroup",
"username": "mycommunity",
"member_count": 1500,
"has_topics": true
}
]
Group Types
private- 1:1 private chatsgroup- Basic groups (< 200 members)supergroup- Upgraded groups (can have topics)channel- Broadcast channels
Forum Topics
Some supergroups have "forum topics" enabled, which is similar to Discord's channel structure. When a group has topics:
- Messages are organized by topic
- Use
--group GROUP_IDto see available topics - Sync will pull messages from each topic separately
Exit Codes
0- Success1- Authentication error2- Group not found or configuration error
Related Skills
telegram-init- Initialize Telegram connectiontelegram-sync- Sync messages from groupstelegram-read- Read synced messages
More from lycfyi/community-agent-plugin
telegram-sync
Sync Telegram messages to local storage. Use when user asks to sync, pull, fetch, or download Telegram messages.
26telegram-read
Read and search synced Telegram messages. Use when user asks about Telegram conversations, wants to see messages, or search for specific content.
12telegram-doctor
Diagnose Telegram configuration and connectivity issues. Use when user reports problems with Telegram sync, connection errors, or wants to troubleshoot.
11telegram-init
Initialize Telegram configuration. Use when user wants to set up, configure, or connect their Telegram account for the first time.
11telegram-send
Send messages to Telegram channels. Use when user wants to post, reply, or send messages to Telegram.
8discord-send
Send messages to Discord channels. Use when user wants to post, reply, or send messages to Discord.
3