List Telegram groups and channels. Use when user asks about available groups, channels, or wants to discover what's accessible.
Scanned 2/12/2026
Install to Claude Code
npx -y skills add lycfyi/community-agent-plugin --skill telegram-list --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Telegram List?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lycfyi-telegram-list)More formats (shields.io, HTML) on the badges page.
---
name: telegram-list
description: "List Telegram groups and channels. Use when user asks about available groups, channels, or wants to discover what's accessible."
---
# 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):
```bash
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py
```
List groups only (exclude DMs):
```bash
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py --no-dms
```
List topics in a specific group:
```bash
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_list.py --group 1234567890
```
Output as JSON:
```bash
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)
```json
[
{
"id": 1234567890,
"name": "My Community",
"type": "supergroup",
"username": "mycommunity",
"member_count": 1500,
"has_topics": true
}
]
```
## Group Types
- `private` - 1:1 private chats
- `group` - 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_ID` to see available topics
- Sync will pull messages from each topic separately
## Exit Codes
- `0` - Success
- `1` - Authentication error
- `2` - Group not found or configuration error
## Related Skills
- `telegram-init` - Initialize Telegram connection
- `telegram-sync` - Sync messages from groups
- `telegram-read` - Read synced messages
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!