DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Connect Telegram — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-connect-telegram

Connect Telegram

Telegram channel adapter for dsh-connect: getUpdates long-polling intake, message normalization, streaming replies, and interactive choice prompts

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-connect-telegram@0.7.2
READMECompatibilityVersions

Compatibility and provenance

Connect Telegram is published as dsh-connect-telegram and currently resolves to version 0.7.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.7.2stable
8/28/2026
0.7.1stable
8/26/2026
0.7.0stable
8/25/2026
Show 2 more versionsCollapse versions
0.6.6stable
8/20/2026
0.6.4stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.7.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
83.6 kB
Files
21
Surface
any
License
MIT
Source
npm
GitHub
★ 2
Weekly downloads
38
Last push
9/3/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in integrations-communication.

Im@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-base

README

dsh-connect-telegram

English | 中文

Telegram channel adapter for dsh-connect: brings DeepSeek Harness agents into Telegram with the same capabilities as the Feishu adapter — bidirectional conversation, streaming typewriter-style replies, interactive choice prompts, image/file intake, and completion cards.

  • Transport: official Telegram Bot API via getUpdates long polling (no webhook / no public IP needed).
  • Bidirectional: private chats and groups; group replies require @-mention (configurable).
  • Streaming replies: long answers are edited in place on one message (typewriter feel).
  • Interactive choices: ask_user_question / menu prompts render as inline-keyboard buttons; tapping answers the question.
  • Media: photos, documents, voice, video and audio are downloaded and staged into the workdir automatically.
  • Zero runtime HTTP dependency: built on the global fetch (Node ≥ 18 / ≥ 20).

Install

dsh plugin --profile web add dsh-connect dsh-connect-telegram

Configure

Create a bot with @BotFather and copy the token. Append to the profile's cordis.patch.yml. The plugin registers itself via its bundle manifest, so only override its config — do not insert it again (duplicate ids crash dsh at boot):

- id: connect-telegram
  name: dsh-connect-telegram
  config:
    botToken: "123456:ABC-YourBotToken"
    requireMention: true   # groups must @-mention the bot (default true)
    language: zh           # zh | en

The token may also come from the TELEGRAM_BOT_TOKEN environment variable.

How it works

Telegram user ──getUpdates(long poll)──► dsh-connect-telegram ──InboundMessage──► dsh-connect (agent)
Telegram user ◄──sendMessage / editMessageText ◄────── dsh-connect (replies)

All user-facing strings are localized (zh/en) through the core's i18n layer; per-chat language, notification levels, /menu, /progress watchdog and every other core feature work the same as Feishu.

Configuration reference

KeyDefaultDescription
botTokenenv TELEGRAM_BOT_TOKENBotFather token
requireMentiontrueGroups: require @-mention or a reply to the bot
languagezhUser-facing message language
pollingTimeoutSeconds50getUpdates long-poll timeout
baseUrl—Bot API base URL override (local Bot API server)