From agi-super-team
Exports, imports, and looks up Telegram contacts by username or phone number. Outputs CSV or JSON with optional message details.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:telegram-contactsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Export, import, and lookup Telegram contacts
Export, import, and lookup Telegram contacts
$TG_TOOLS_PATH/tools/tg_contacts.py
# CSV to stdout
python3 $TG_TOOLS_PATH/tools/tg_contacts.py export
# CSV to file
python3 $TG_TOOLS_PATH/tools/tg_contacts.py export --output contacts.csv
# JSON with last messages
python3 $TG_TOOLS_PATH/tools/tg_contacts.py export --output contacts.json --messages 50
CSV columns: user_id, username, first_name, last_name, phone. JSON additionally: messages, last_message_date, messages_count.
# By username
python3 $TG_TOOLS_PATH/tools/tg_contacts.py lookup @username
# By phone number
python3 $TG_TOOLS_PATH/tools/tg_contacts.py lookup +380671234567
Shows: name, username, phone, ID + last 5 messages. If the contact is not in the list -- temporarily adds and automatically removes after checking.
python3 $TG_TOOLS_PATH/tools/tg_contacts.py import --input contacts.csv
CSV format: first_name,last_name,phone
telegram-send -- sending messagestelegram-check -- checking repliesupdate-lead -- update CRM after lookupnpx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamChecks inbound Telegram messages and replies using tg-tools. Supports contact lookup, group/channel scraping, and export with last messages.
Full personal Telegram account control via MTProto (Telethon) — list/search chats, read/summarize history, see unread, look up contacts, download media, and send/reply/forward/edit/delete/react/send files/mark read. Use when the user mentions Telegram or their own Telegram account.
Downloads, exports, converts, and filters Telegram chats via the telegram-download-chat CLI. Supports message download, JSON-to-TXT/HTML/PDF conversion, date/user/keyword filtering, media download, and subchat extraction.