LosEcher/dsh-channel-telegram ↗★ 0
dsh-channel-telegram
DSH bundle: thin Telegram bridge (long-poll Bot API, allowlist, per-chat agent sessions).
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:LosEcher/dsh-channel-telegram说明文档
阅读完整 README ↗dsh-channel-telegram
Telegram 薄桥插件:把 DSH 的 agent 通过 Telegram Bot 暴露出来——长轮询接收私聊消息,按 chatId 映射一个 DSH agent 会话(session id telegram-),走与 ACP 桥完全相同的驱动模式(agents.create → agent.followup → agent.whenIdle),回复最终 assistant 文本。
独立交付:不需要改动 DSH 仓库;DSH 的 Host loader 支持绝对路径插件 entry(mountRootInclude 对 isAbsolute 的 name 直接 file-URL 加载)。
文件
| 文件 | 说明 |
|---|---|
index.mjs | Cordis 插件本体(named exports:name/inject/Config/apply,规避 Loader 默认解包丢 Config 的问题) |
telegram-client.mjs | 纯 Bot API 客户端(无 DSH 依赖,POST JSON body;4096 分块;401/409 错误映射) |
cordis.telegram.yml | DSH overlay 模板(insert 进用户 patch 层) |
test/telegram-client.test.mjs | mock Bot API 服务器单测(node test/telegram-client.test.mjs) |
启用步骤
- Bot token:@BotFather 建 bot,拿 token。DSH 进程环境需有
TELEGRAM_BOT_TOKEN(改tokenEnv可换变量名)。 - 拿到你的 chat id:给 @userinfobot 发条消息即可看到。
- 配置:把
cordis.telegram.yml的insert合并进$DSH_HOME/cordis.patch.yml(全部 profile)或$DSH_HOME/profiles//cordis.patch.yml(单 profile),allowlist填你的 chat id(空 = 全部拒绝)。 - 重启 dsh web(新 host 插件在启动时加载),日志应出现
[dsh-channel-telegram] connected as @...。
- insert:
- id: channel-telegram
name: dsh-channel-telegram # bundle 安装后按包名解析
config:
tokenEnv: TELEGRAM_BOT_TOKEN
allowlist: [123456789] # 你的私聊 id
# workspace: /abs/path # 可选,agent 会话 cwd(默认 ~/.dsh-telegram/workspace)
# provider: los-gateway # 可选:agent 走的 provider 路由(比如上一轮配的 los 网关)
# model: deepseek # 可选:该路由上的模型
本地开发(未安装 bundle、直接引用源码)时把 name 换成
/absolute/path/to/dsh-channel-telegram/index.mjs(DSH Host loader 支持
绝对路径插件 entry)。
行为
- 允许名单:非 allowlist 的私聊第一次收到"未授权"提示;非私聊(群/频道)忽略。
- :,会话内上下文连续; 销毁重建。