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.

Trans Md — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
T

dsh-trans-md

Trans Md

Long-reply to Markdown transcriber for DeepSeek Harness: replies longer than 15 lines are written to a .md file under a workspace subdirectory instead of flooding the chat.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:passerby325799/dsh-trans-md#0622ce09d7634c185b938987b5439a4ef42d4d0d
READMECompatibilityVersions

Compatibility and provenance

Trans Md is published as dsh-trans-md 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
9/23/2026

Versions

0.1.0stable
9/23/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
9/23/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 productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseWeb All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebUniver Officedsh-univer-officeDSH × Univer integration with a bundled collaboration Gateway and Viewer: inline previews, live floating Worktree windows, and session-end review actions in DeepSeek Harness.

README

dsh-trans-md

Long replies become Markdown files — for DeepSeek Harness (dsh).

Very long assistant replies can be truncated mid-stream by the transport. dsh-trans-md moves the bulk of long replies into a workspace Markdown file and keeps the chat reply short. It also saves tokens: content written to a file as a tool argument is paid for once, while a long chat reply stays in context and is re-sent on every later request.

Install

dsh plugin --profile web add github:<owner>/dsh-trans-md

Restart dsh (or reload the profile), then the rule is active for new turns.

What it does

The plugin contributes one system-prompt section (order 40) stating a single rule:

  • If a user-facing final reply would exceed 15 lines, write the full content to docs/<prefix>-<topic>.md in the current workspace instead of sending it in chat.
  • The chat reply becomes a short digest (at most 10 lines) plus the file path.
  • Replies under 15 lines are sent normally in chat.
  • Writing the file and also pasting its body into chat is explicitly disallowed.
  • Investigation depth is unchanged — only the delivery location changes.

It registers no tools, no UI, and makes no network requests. The docs/ directory is created on first use.

Configuration

All fields are optional; the defaults are shown.

KeyDefaultMeaning
enabledtrueTurn the rule off without uninstalling.
maxLines15Line threshold above which a reply goes to a file.
docsDir"docs"Workspace-relative directory for the files.
filePrefix"notes"Prefix for generated filenames.
ruleFile—Path to a Markdown file that replaces the built-in rule text entirely.
workspaceRoot—Optional absolute base path; when omitted the process working directory is used.

Set them through the profile patch:

- id: dsh-trans-md
  name: dsh-trans-md
  config:
    maxLines: 20
    docsDir: notes

Custom rule text

Point ruleFile at any Markdown file to replace the built-in instruction. A non-empty file wins entirely; an empty or unreadable file silently falls back to the built-in text, so a bad path never breaks prompt assembly. Content is capped at 4000 characters.

Scope and limits

  • This is a prompt-level instruction, not a hard interception. It makes the behaviour the strongly preferred default; it cannot guarantee it in every turn. A hard guarantee would require an output hooks layer, which this plugin deliberately does not add.
  • The rule applies to the final user-facing reply. Intermediate narration between tool calls is exempt.
  • Styles apply to the main conversation only.

Requirements

  • DeepSeek Harness with a systemPrompt service available. If that service is absent the plugin mounts and contributes nothing rather than failing profile load.
  • No runtime dependencies.

License

MIT