dsh-feishu-gateway
kriskwok/dsh-feishu-gateway
DeepSeek Harness Feishu gateway plugin: chat with your DSH agent from Feishu (persistent sessions, /new, Markdown replies, proactive push)
2
stars
0
forks
MIT
License
2026-08-14
Created
2026-08-15
Last push
README
dsh-feishu-gateway
English | 中文
Chat with your DeepSeek Harness (DSH) agent from Feishu (Lark).
A DSH plugin bundle that mounts a Feishu long-connection listener; every Feishu
message is routed to a stable DSH session (resumed via the agents service,
so multi-turn chats stay in the same session), and the agent's answer is
replied as a Markdown-rich post message. It also supports /new to start a
fresh session, a native Typing reaction while the answer is being produced,
live streaming progress cards for long tasks, click-to-answer cards for
permission approvals and the model's ask_user_question tool, and proactive
push.
Features
- 💬 Full conversation — Feishu private chat / group @bot → DSH agent → reply
- 🔁 Persistent sessions — each Feishu conversation maps to one DSH session
(
agents.resume/agents.create);/new(or "另起会话" / "新会话" / "重新开始" / "换个话题") starts a fresh one - ⌨️ Native Typing indicator — while the agent works, the bot adds a
Typingreaction to your message (like hermes-agent's Feishu gateway); it stays until the answer is done, and is swapped for aCrossMarkreaction on failure. No more "thinking…" hint text by default. - 🎞 Streaming progress — long tasks report continuously: a live interactive
card streams the agent's thinking, tool calls, and answer draft as they
happen (
reporting.mode: 'stream', default). Setreporting.mode: 'final'to only receive the final result. - 🃏 Click-to-answer cards — permission approvals (
approval/request, e.g. sandbox escalation) and the model'sask_user_questiontool render as Feishu interactive cards: click ✅ 允许一次 / 🚫 拒绝 or an option button to answer. The click response instantly replaces the card with a decided state (buttons removed, result shown) plus a toast confirmation. - ✍️ Markdown replies — plain rich-text (
post) messages with themdtag: bold, inline code, lists and links render natively, no cards needed - 🤖 Full agent capability — the DSH agent runs with its own model and tools (bash, files, subagents…), fully autonomous
- 📨 Proactive push — optional admin HTTP API (
/api/push) to push text / Markdown / cards to any user or group - 🔌 No public network required — Feishu long connection, no webhook URL
- 🗂 Persistence — Feishu↔DSH session mapping survives restarts
Requirements
- DeepSeek Harness installed and built (
dshCLI), withDEEPSEEK_API_KEYconfigured (the agent's model is used as-is) - A Feishu open-platform self-built app with the bot capability enabled (see below)
Feishu app setup
- Feishu Open Platform → create a self-built app.
- Enable the bot capability.
- Grant permissions:
im:message,im:message:send_as_bot(+im:message:send_as_bot:readonlyto read content). Publish a version. - Under Events & callbacks, choose long connection and subscribe to
im.message.receive_v1(no public URL needed). The same long connection also delivers card button clicks (card.action.trigger, used by the approval / Q&A cards) — no webhook URL required. - In Feishu, search the app name and add the bot as a contact.
The
Typingreaction indicator and card buttons need the bot to be able to interact with messages in the chat (im:message). If the reaction API is denied, the gateway automatically falls back to thehintTextmessage.
Installation (as a DSH plugin)
Prerequisite: this package is published on npm and dsh is on your PATH.
The recommended setup mounts the gateway into the web profile: it runs in the same process as the DSH Web UI, so starting the Web UI also starts the Feishu gateway, and both share the same DSH agent. A standalone profile is also supported (see "Alternative" at the end).
Option 1 (recommended): mount into the web profile
The web profile is DSH's default GUI profile (dsh --profile web).
- Edit
~/.dsh/profiles/web/package.jsonto add the dependency and bundle:
{
"name": "dsh-profile-web",
"private": true,
"dependencies": {
"@kriskwok/dsh-feishu-gateway": "^0.2.0"
},
"dsh": {
"profile": {
"bundles": [
"@deepseek-ai/dsh-base",
"@deepseek-ai/dsh-web-app",
"@kriskwok/dsh-feishu-gateway"
]
}
}
}
- Install dependencies in the web profile directory:
cd ~/.dsh/profiles/web && pnpm install
- Edit
~/.dsh/profiles/web/cordis.patch.ymland fill in your Feishu app credentials:
- id: feishu-gateway
config:
feishu:
appId: cli_xxxxxxxxxxxxxxxx
appSecret: xxxxxxxxxxxxxxxxxxxxxxxx
http:
port: 3100 # optional admin API
token: your-token
- Start (or restart) the web profile:
dsh --profile web
You can also use the one-shot script from this repository:
./scripts/create-profile.sh(mounts into the web profile by default;--standalonecreates a standalone feishu profile instead).
Alternative: standalone feishu profile
To run the gateway without the Web UI, use a standalone profile:
mkdir -p ~/.dsh/profiles/feishu && cd ~/.dsh/profiles/feishu
cat > package.json <<'EOF'
{
"name": "dsh-profile-feishu",
"private": true,
"dependencies": {
"@kriskwok/dsh-feishu-gateway": "^0.2.0"
},
"dsh": {
"profile": {
"bundles": ["@deepseek-ai/dsh-base", "@kriskwok/dsh-feishu-gateway"]
}
}
}
EOF
cat > pnpm-workspace.yaml <<'EOF'
packages:
- .
nodeLinker: hoisted
autoInstallPeers: false
EOF
pnpm install
# then create ~/.dsh/profiles/feishu/cordis.patch.yml with your app credentials
dsh --profile feishu
Configuration
All settings live in the feishu-gateway namespace (profile patch row or
~/.dsh/settings.yaml):
| Field | Default | Description |
|---|---|---|
feishu.appId |
— | Feishu app id (required) |
feishu.appSecret |
— | Feishu app secret (required) |
feishu.domain |
feishu |
feishu (CN) or lark (international) |
feishu.botOpenId |
`` | Optional; @-detection works without it |
feishu.replyMode |
at |
Group policy: at or all |
workspace |
~/Documents/DSH-Workspace |
Agent working directory |
hintText |
爸爸,我正在努力处理中…… |
Fallback "processing" text (only when the Typing reaction is disabled/unavailable) |
reporting.mode |
stream |
stream = live streaming progress card; final = only the final answer |
reporting.typingReaction |
true |
Show the native Feishu Typing reaction while working |
reporting.showReasoning |
true |
Stream the model's reasoning in the card |
reporting.showToolCalls |
true |
Stream tool-call activity in the card |
reporting.patchIntervalMs |
700 |
Min interval between card patches (Feishu rate limit) |
reporting.maxBodyChars |
900 |
Max rendered card body length |
reporting.failureReaction |
CrossMark |
Reaction added on failure (after removing Typing) |
reporting.cardTitleStreaming |
🤖 DSH 处理中… |
Custom title of the streaming card while working (yellow header) |
reporting.cardTitleDone |
🤖 DSH 处理完成 |
Custom title of the streaming card when complete (green header) |
interactions.approvalCards |
true |
Answer permission approvals with clickable cards |
interactions.userQuestionsCards |
true |
Answer ask_user_question with clickable cards |
interactions.approvalCardDispose |
update |
After an approval-card click: update instantly replaces the card with a decided state (buttons removed, result shown) + toast; recall recalls the card message (falls back to update when recall fails — note Feishu leaves a "撤回了一条消息" placeholder) |
newSessionPatterns |
/new + Chinese phrases |
Regexes that reset the session |
sessionsFile |
data/dsh-feishu-sessions.json |
Session mapping persistence |
http.port |
0 |
Admin API port (0 disables) |
http.token |
`` | Admin API bearer token |
Q&A cards in the web profile:
ask_user_questionanswers go through the singlectx.userQuestionsprovider slot. When the DSH Web UI runs in the same process (recommended setup), the Web UI owns that slot, soask_user_questionis answered there; permission-approval cards still work from Feishu in every setup. In a standalone feishu profile, bothask_user_questionand approvals are answered from Feishu cards.
Session coexistence & self-healing
- Preset composition (tools!) — in preset-roster deployments (e.g. the web
profile), Feishu agents are composed from the deployment's agent preset
(
meta.agentPreset+ presetmount), so the model gets its tools instead of treating tool calls as plain text. - Web UI coexistence — sessions have a single live owner. When the Web UI
opens a session, the Feishu side takes over the running agent via
agents.get()and drives the same session instead of failing with "while it is live" / "already exists"; both surfaces share one conversation. - Wedged-session self-heal — if a crashed process leaves a session permanently conflicted ("already exists"), the gateway mints a fresh session id, re-points the Feishu conversation at it, and continues chatting.
Admin HTTP API (optional)
Enable by setting http.port. Endpoints:
GET /health— statusPOST /api/push— proactive push{ "receive_id": "ou_xxx", "receive_id_type": "open_id", "msg_type": "text", "content": "{\"text\":\"hi\"}" }GET /api/sessions— Feishu↔DSH session mapping overview
Development
pnpm install
pnpm build # tsc → lib/
pnpm test # offline self-tests
Note:
@deepseek-ai/*packages are provided by the DSH host at runtime; for local type-checking they are symlinked from your deepseek-harness checkout (see the publish checklist).
License
MIT
More in Chat & IM
voyager
by nagi-ovo
Enhancement suite for Gemini, AI Studio, Claude & ChatGPT — plus a prompt manager for any web UI, DeepSeek Harness included. / 面向 Gemini、AI Studio、Claude 与 ChatGPT 的增强套件;提示词管理器可用于任意 Web UI,含 DeepSeek Harness。
awesome-gpt-image-2
by freestylefly
Prompt as Code | GPT-Image2 工业级提示词引擎与模板库,470+ 个案例逆向工程,20+ 套工业级模板,并提炼出Skills,持续更新中
seewxapkg
by leslie-sss
极简实用的微信小程序反编译 Web 工具
dsh-lark-bot
by plutokeating
dsh-lark-bot:把 DeepSeek Harness (dsh) 桥接进飞书/Lark 的 bot:流式卡片、项目工作区、并行任务、多角色 Agent、跨会话通知、对话内模型/密钥管理与安全网守护(dsh 崩溃后飞书仍可自救)。A bridge bot connecting DeepSeek Harness (dsh) into Feishu/Lark: streaming cards, workspaces, parallel tasks, multi-role agents, cross-session notify, in-chat model/key management, and a safety-net guardian.
