精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
Feishu (Lark) bot bridge for DeepSeek Harness: two-way chat with your agent, settings page for bot credentials and workspace routing. · 飞书机器人 ↔ DSH 双向聊天桥
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
Feishu (Lark) bot bridge for DeepSeek Harness: two-way chat with your agent, settings page for bot credentials and workspace routing. · 飞书机器人 ↔ DSH 双向聊天桥
待人工精选——以下事实来自源码仓库。
Feishu (Lark) bot bridge for DeepSeek Harness: two-way chat with your agent, settings page for bot credentials and workspace routing. · 飞书机器人 ↔ DSH 双向聊天桥
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:Qing45/dsh-feishu-chat 作者没有声明支持的平台。
设置 → 飞书, paste the two values from Feishu Open Platform → your app → 凭证与基础信息, click 保存并重新连接, and the long connection comes up immediately. No config files to edit by hand. - Switch the bound workspace at any time — the same settings page lists every workspace the profile knows about (name + path + last activity). Click any row to retarget inbound Feishu messages to that workspace; the choice persists and the router reroutes live without restarting the harness. - Two-way chat — Feishu messages arrive over the official WebSocket long connection (im.message.receive_v1) and are delegated to a subagent of the bound workspace's latest session; the text reply is sent back to the same chat automatically. - Agent → Feishu tool — the model gets a feishu_send_message tool, so any session can push a message to the last chat that contacted DSH (or a given chat_id). - Robust long connection — protobuf frame decode (pbbp2), automatic ack, ping keep-alive, fragment merging (sum/seq), and reconnect with backoff, all in-process; stopping or updating the plugin tears everything down cleanly. ## Install bash # from npm (once published) or from this repo: dsh plugin --profile web add dsh-feishu-chat # or directly from GitHub: dsh plugin --profile web add github:Qing45/dsh-feishu-chat Then restart dsh web and open 设置 → 飞书: 1. Connect the bot — fill in the App ID and App Secret (Feishu Open Platform → your app → 凭证与基础信息), click 保存并重新连接. The status line turns green when the long connection is up. 2. Pick the workspace — the workspace list shows every workspace the profile knows about (name + path + last activity). Click any row to bind it; inbound Feishu messages will be routed to that workspace's latest session from now on. Switch any time, no restart needed. > ⚠️ This plugin is community third-party code — installing it runs it with your own permissions. Check the source before installing. Credentials stay local in $DSH_HOME/feishu-bot/config.json and are never committed or uploaded. ## How it works | Piece | File | Role | | --- | --- | --- | | Host entry | lib/index.js | Cordis plugin (export const name + export function apply), wires config, router, WS client, tool and HTTP routes | | Feishu API | lib/feishu.js | node:https helpers: tenant token, send message, WS endpoint | | WS client | lib/ws.js | in-process long connection: protobuf pbbp2.Frame, auto-ack, ping, fragment merge, reconnect | | Router | lib/router.js | inbound message → resolve parent agent (initiator → live agent → resume) → subagent → reply | | Config | lib/config.js | $DSH_HOME/feishu-bot/config.json persistence | | Routes | lib/routes.js | HTTP routes for the settings UI (same-origin writes only) | | Client | client/client.js | window.__ModuleLoader__.load bundle registering the 设置 → 飞书 section | The package is a standard DSH bundle: package.json declares dsh.bundle.patch (layer insertion) and dsh.client (web bundle), and cordis.patch.yml inserts the plugin row into the profile tree. ## Development / local install without a GUI restart The profile's own patch layer ($DSH_HOME/profiles/<profile>/cordis.patch.yml) is hot-reloaded: bash pnpm --dir "$DSH_HOME/profiles/web" add /path/to/dsh-feishu-chat Then append to cordis.patch.yml: yaml - insert: - id: feishu-bot name: 'dsh-feishu-chat' Refresh the browser — the settings section appears without restarting the harness. ## Caveats - One subagent is spawned per inbound message (no queueing); replies may arrive out of order under a burst. - The TLS verification is relaxed (rejectUnauthorized: false) so the long connection works behind corporate MITM proxies / broken certificate stores; review this trade-off for your environment. - The tool name is feishu_send_message; chat_id defaults to the most recent chat that contacted DSH. ## License MIT不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。