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.

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

@blue/dsh-telegram-bot

Telegram Bot

DeepSeek Harness plugin: connect a Telegram bot to your dsh agent via long polling. One agent per chat, multi-turn context, whitelist access, and agent-preset mounting so the bot gets the same tools as a Web GUI session.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Blue-2571/dsh-telegram-bot#67f0cf1e397a4c48e1a9cd79daee69a3fcd8c2a4
READMECompatibilityVersions

Compatibility and provenance

Telegram Bot is published as @blue/dsh-telegram-bot and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/25/2026

Versions

0.1.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/25/2026
View source ↗
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.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rIm@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).

README

@blue/dsh-telegram-bot

English · 简体中文

A minimal single-purpose DeepSeek Harness (dsh) plugin: connect a Telegram bot to your dsh agent via long polling — no public endpoint needed.

Inspired by dsh-im-hub, but reduced to Telegram only: one adapter, no web settings card, no HTTP webhook surface.

  • One agent per chat (telegram:<chatId>), multi-turn context retained.
  • Agent-preset mounting: set agent.preset and the bot's sessions mount that preset, getting the same tools (bash, fs, ssh, ...) as a Web GUI session.
  • Whitelist access control (allowedUserIds).
  • Slack-style commands: /help /reset /status /model.
  • Long replies split at Telegram's 4096-char limit.
  • Idle chats disposed after agent.idleTimeoutMs.

Install

dsh plugin --profile web add @blue/dsh-telegram-bot

The row is disabled by default. Enable it from the profile's cordis.patch.yml:

- id: dsh-telegram-bot
  disabled: false
  config:
    telegram:
      token: '123456:ABC-DEF...'   # from @BotFather
      allowedUserIds: [6354114195] # your numeric Telegram user id
    agent:
      preset: standard             # mount the standard preset for full tools

Then restart the profile (dsh web).

Configuration

KeyDefaultDescription
enabledtrueMaster switch.
telegram.token''Bot token from @BotFather.
telegram.allowedUserIds[]Numeric user ids allowed to talk to the bot; empty = everyone. Set it in production.
telegram.timeoutSeconds50getUpdates long-poll timeout.
telegram.pollIntervalMs500Gap after a poll timeout/error.
agent.cwd''Working directory for agent sessions (defaults to dsh's cwd).
agent.provider / agent.model''Override model; empty = deployment default.
agent.preset''Agent preset id to mount for bot sessions ('' = deployment default).
agent.maxMessageLength4000Max chars per outbound message.
agent.idleTimeoutMs1800000Idle time before a chat's agent is disposed (0 = never).
agent.instructionPrefix''Prefix prepended to every user message.

Commands

CommandEffect
/helpShow command help.
/resetClear this chat's context (fresh agent).
/statusShow active chats / agents.
/modelShow the current model selection.

Security

  • Force a whitelist. An empty allowedUserIds means anyone with the token can drive your agent — which can execute tools on the host.
  • The token lives in the profile's cordis.patch.yml; keep that file private (or reference an environment variable via !!js process.env.TG_BOT_TOKEN).

License

MIT