DeepSeek Harness plugin

dsh-messaging

Multi-platform messaging plugin for DeepSeek Harness — Feishu/Telegram with capability degradation

Jump to install

Source facts

Repository
andiven/dsh-messaging
Latest update
Aug 14, 2026
Category
Remote & Mobile
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/andiven/dsh-messaging
Plugin: dsh-messaging
Author: andiven

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

dsh-messaging 📨

English | 中文

Multi-platform messaging plugin for DeepSeek Harness.

One plugin, many IM platforms. Configure once, switch between Feishu/Telegram/Discord/WeCom with capability auto-degradation.

Features

  • 🌉 MessagePlatform abstraction — unified interface for all IM platforms
  • 🔌 Plugin architecture — each platform is a drop-in adapter
  • Capability degradation — unsupported features get automatic user-friendly warnings
  • 📝 Markdown auto-downgrade — platforms that don't render Markdown (Feishu!) get plain text automatically
  • 🔒 Production-hardened — message dedup, per-chat serial processing, token auto-refresh (battle-tested in Hermes Agent 3+ months)

Supported Platforms

PlatformTextMarkdownImageAudioVideoFileCardReactionThreadTypingPush
Feishu🔨🔨🔨🔨
Telegram
Discord
WeCom

❌ = platform doesn't support it → auto-downgrade with user warning 🔨 = platform supports it but not yet implemented in this plugin 🚧 = planned for future releases

Quick Start

# Install into your DSH profile
dsh plugin --profile web add github:andiven/dsh-messaging
# cordis.patch.yml
- id: messaging
  name: '@dsh-messaging/messaging'
  config:
    platform: feishu
    feishu:
      appId: env:FEISHU_APP_ID
      appSecret: env:FEISHU_APP_SECRET
      mode: websocket
    autoConnect: true

Prerequisites

Feishu: Create a self-built app at open.feishu.cn, enable im:message and im:message:send_as_bot permissions, subscribe to im.message.receive_v1 via long connection mode, then publish.

Telegram: Create a bot via @BotFather, get the bot token.

Discord: Create an application at the Discord Developer Portal, add a Bot, enable the Message Content privileged intent, invite it to your server with the bot scope and Send Messages/Read Message History permissions, and grab the bot token.

WeCom: Create a self-built app in the WeCom admin console, note the Corp ID, the app's Secret and AgentId. Receiving messages requires registering an HTTP callback URL (Corp ID, Token, EncodingAESKey) in the console pointing at this plugin's callback server — omit wecom.callback to run send-only.

How It Works

User sends message in Feishu/Telegram
  ↓
Adapter receives event → normalizes to InboundMessage
  ↓
DshBridge calls agent.followup(text)
  ↓
DSH Agent processes (LLM + tools)
  ↓
session/event: assistant/chunk → buffered until turn/end
  ↓
DshBridge sends complete reply via platform.sendMessage()
  ↓
Capability auto-check: Markdown → plain text for Feishu, etc.

Key Features

  • CapabilitySet — each platform declares 12 typed capabilities; the agent can query what's possible before acting
  • Auto-degradation — unsupported features trigger user-friendly bilingual warnings
  • Streaming buffer — assistant text is accumulated and sent as a complete message (not per-token)
  • Retry with backoff — exponential backoff + jitter, honors Telegram retry_after / Feishu rate-limit codes
  • Per-chat serialization — preserves message ordering within a conversation
  • Message dedup — Feishu duplicate events filtered with TTL + cap

Known Limitations

  • Feishu media send (image/audio/video/file) not yet implemented (capabilities honestly set to false)
  • Telegram/WeCom card messages degrade to formatted text; Discord cards degrade to an embed
  • Discord Gateway resume is best-effort (falls back to a fresh Identify on non-resumable close codes)
  • WeCom inbound requires an HTTP callback (registered in the WeCom admin console); the proprietary AI-Bot WebSocket gateway is a separate, invite-only product and isn't implemented here
  • No reconnection state preservation (queued updates may be lost on restart)
  • No test suite yet
  • Single platform per instance (config selects one platform)

Development

git clone https://github.com/andiven/dsh-messaging.git
cd dsh-messaging
npm install
npm run build

License

MIT