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.

Md View — DSH Plugin for DeepSeek Harness
← Plugins
M

dsh-md-view

Md View

Markdown view: markdown rendering for DSH client plugins, exposed through the client service mdView. A thin facade over the harness MarkdownText primitive (GFM, math, footnotes, highlighted code) plus README-ism handling: raw <img> tags and document-relative targets resolved against the repo.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:joao-paulo-santos/dsh-md-view#ad357bbfef896bb3e08d224980c983912eb888ff
READMECompatibilityVersions

Compatibility and provenance

Md View is published as dsh-md-view and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/30/2026

Versions

0.2.0stable
8/30/2026
0.1.0stable
8/29/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/31/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-md-view

A DeepSeek Harness (DSH) plugin: markdown rendering for client plugins, so every surface that shows markdown (READMEs, journals, pads) renders it the same way through one service: the harness's own MarkdownText pipeline (GFM, math, footnotes, shiki-highlighted code with copy buttons) plus the document-specific handling chat never needs.

There is no UI of its own to visit. Plugins inject the client service mdView:

// consumer client half — inject: ['mdView', …]

// 1. One markdown document as an element (you keep the layout):
return React.createElement('div', { className: 'mine' },
  ctx.mdView.render(markdownText, { links: { repo: 'owner/name' } }))

// 2. One self-contained document:
const Doc = ctx.mdView.component({ text: markdownText, links: { repo: 'owner/name' } })
return React.createElement(Doc, {})

What it adds to the primitive

  • raw <img> tags (badges, screenshots) become real images,
  • document-relative link and image targets resolve against https://github.com/{repo}/blob/HEAD/... and the raw content host (when links.repo is given),
  • fenced code blocks and inline code spans are never transformed.

Contract

  • Rendered output is React elements with plain text nodes only; markdown can never inject HTML (<script> stays visible text — a MarkdownText rule).
  • links.repo is optional; without it relative targets stay as written.
  • The wrapper stylesheet is installed once by this plugin; consumers add no CSS of their own for markdown.
  • No persistence; the host half is a stub.

How to install

Requires a DeepSeek Harness checkout and a profile, here web. The plugin has no dependencies:

mkdir -p ~/dsh-plugins && cd ~/dsh-plugins
git clone https://github.com/joao-paulo-santos/dsh-md-view.git

# from the harness checkout
pnpm dsh plugin --profile web add ~/dsh-plugins/dsh-md-view

# verify the profile still composes
pnpm dsh --profile web --dump-config

Restart the harness. Plugins that inject the mdView service can now render markdown.

Dependencies

(none)

Plugins dependent on this

  • dsh-workspace-history renders compaction journal bodies with it (optional; degrades to plain text)
  • dsh-wo-github renders repository READMEs with it (optional; degrades to plain text)