Read and search synced Telegram messages. Use when user asks about Telegram conversations, wants to see messages, or search for specific content.
/plugin marketplace add lycfyi/community-agent-plugin/plugin install lycfyi-telegram-connector-plugins-telegram-connector@lycfyi/community-agent-pluginThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Read and search synced Telegram messages.
This skill reads messages from locally synced Telegram data. It can show recent messages, search for keywords, or filter by date.
Read all messages from default group:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py
Read from specific group:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py --group 1234567890
Show last N messages:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py --last 20
Search for keyword:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py --search "meeting"
Filter by date:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py --date 2026-01-06
Read specific topic:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py --group 1234567890 --topic announcements
Output as JSON:
python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_read.py --json
# My Group
Group: My Group (1234567890)
Type: supergroup
Last synced: 2026-01-06T12:00:00Z
---
## 2026-01-06
### 10:30 AM - @alice (123456)
Hello everyone!
### 10:31 AM - @bob (789012)
↳ replying to @alice:
Hey Alice!
{
"group_id": 1234567890,
"topic": "general",
"message_count": 50,
"messages": [
{
"date": "2026-01-06",
"time": "10:30 AM",
"author": "@alice (123456)",
"content": "Hello everyone!"
}
]
}
When using --search, only messages containing the keyword are returned:
python telegram_read.py --search "Python"
Output:
Found 3 messages matching 'Python':
### 10:30 AM - @alice (123456)
I love Python programming!
----------------------------------------
### 2:15 PM - @charlie (456789)
Python is great for automation
----------------------------------------
--last 20 to see the latest activity--topic with --search for targeted searches--json to get structured data for further processingYou must sync messages before reading:
python plugins/telegram-agent/tools/telegram_sync.py --group 1234567890
0 - Success1 - No synced data found2 - Configuration errortelegram-sync - Sync messages from Telegramtelegram-list - List groups and topicstelegram-send - Send messages to TelegramThis skill should be used when the user asks about libraries, frameworks, API references, or needs code examples. Activates for setup questions, code generation involving libraries, or mentions of specific frameworks like React, Vue, Next.js, Prisma, Supabase, etc.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.