Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

telegram-cliTelegram CLI 搜索

Agent Skill

telegram-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

261

周安装

11

GitHub Stars

1

下载量

92
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:telegram-cli(Telegram CLI 搜索)
来源仓库:https://github.com/afutured/tele-cli
仓库路径:skills/telegram-cli
安装命令:
npx skills add https://github.com/afutured/tele-cli --skill telegram-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/afutured/tele-cli --skill telegram-cli

简介

telegram-cli 从终端直接读取 Telegram 对话与消息,无需图形界面介入。

  • 适用于需要快速检索历史记录或监控特定群组信息的命令行场景。
  • 支持 JSON 格式输出,便于与其他工具集成处理结构化数据。
  • 首次运行需完成交互式登录认证并授权会话访问权限。
  • 注意遵守 Telegram 官方 API 使用条款防止账号异常。

SKILL.md

Telegram CLI Usage Guide

Overview

Use tele to authenticate, list dialogs, and fetch messages from Telegram directly from the terminal.

Setup

  • Requires uv.
  • Install/upgrade (one-time per session): uv tool install --upgrade git+https://github.com/AFutureD/tele-cli
  • Verify install: tele -V
  • Per terminal session: run tele -h once, then confirm auth with tele -f json me (log in if needed).

Notice

  • Call tele -h once before running any command for the first time in the session.
  • Always use JSON output: always pass -f json to tele (example: tele -f json me).
  • In each session, confirm authentication before running non-auth commands: run tele -f json me.
  • Commands under tele auth... do not require an existing authenticated session.

Quick Start

  1. Read help once: tele -h
  2. Log in (interactive prompts): tele auth login
  3. Confirm who you are: tele -f json me
  4. List dialogs and find a dialog_id: tele -f json dialog list
  5. Fetch recent messages from a dialog:

- tele -f json message list <dialog_id> -n 20

Session Management

Global options:

  • --config <path>: alternate config file (default: ~/.config/tele/config.toml)
  • --session <name>: use a specific session file by name (listed by tele auth list)

Login / logout:

  • tele auth login (creates a local session; prompts for phone, code, and optional 2FA password)
  • tele auth login --switch (log in and make the new session active)
  • tele auth logout (logs out of the selected session)

List and switch sessions:

  • tele auth list
  • tele auth switch --uid <user_id>
  • tele auth switch --username <username> (accepts @alice or alice)
  • tele auth switch --session <session_name>

Where sessions live on disk (macOS/Linux default):

  • Sessions folder: ~/.config/tele/sessions/
  • Current activated session symlink: ~/.config/tele/sessions/Current.session

Dialog List

List all dialogs (users, groups, channels):

  • tele -f json dialog list

Notes:

  • For -f text, the output follows the template:

- [TYPE.UI.STATE] [UNREAD COUNT] [DIALOG_ID] NAME - TYPE: U user, G group, C channel - UI: P pinned, A archived, - normal - STATE: M muted, - not muted

  • For -f json, each dialog includes keys like name, entity (with id), unread_count, and the latest message.

Message List

Fetch messages from a dialog:

  • tele -f json message list <dialog_id>

Common options:

  • Limit count: -n <num> (example: tele -f json message list <dialog_id> -n 20)
  • Pagination: --offset_id <message_id> (fetch around/older than a known message id; offset_id is excluded)
  • Output order: --order asc|desc
  • Time filters:

- --from "<natural language or date>" - --to "<natural language or date>" - --range "<natural language range>" (overrides --from/--to, special: "this week")

Examples:

  • tele -f json message list 1375282077 -n 10
  • tele -f json message list 1375282077 --range "last week"
  • tele -f json message list 1375282077 --from "2025-02-05" --to "yesterday"

Send Message

Send a text message to a user, group, or channel:

  • Basic: tele message send <receiver> "<message>"
  • Force peer id: tele message send -t peer_id "<peer_id>" "<message>"

Receiver formats:

  • Username: alice or @alice
  • Phone: "+15551234567"
  • Dialog name: "My Group"
  • Numeric peer id: "-1001234567890" (common for channels)

How the receiver is resolved:

  • With --entity/-t peer_id, <receiver> is treated as a numeric peer id (no name matching).
  • Without --entity, it first tries Telegram/Telethon resolution (username/phone/id). If that fails, it scans your dialogs and picks the first match by:

- dialog name contains <receiver> (case-insensitive), or - dialog id / entity id equals <receiver> (string compare).

Examples:

  • tele message send alice "hi"
  • tele message send "+15551234567" "hi"
  • tele message send "My Group" "hi"
  • tele message send -t peer_id "-1001234567890" "hi"

Notes:

  • Quote negative peer ids (or use --) so the shell/CLI does not treat them as options.
  • The command prints no output on success; verify by listing messages: tele -f json message list <dialog_id> -n 5.

Additional Informations

  • Config file: tele reads ~/.config/tele/config.toml by default and will create it on first run;

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.22%
按下载量换算32

Claude

29.83%
按下载量换算27

Cursor

17.55%
按下载量换算16

Gemini CLI

9.61%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/afutured/tele-cli --skill telegram-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills