Back to home

hanzhangzzz

dsh-diagram

Turn articles in DeepSeek Harness into editable Excalidraw canvases.

Stars
2
Language
TypeScript
Created
Aug 15, 2026
Updated
Aug 15, 2026

Introduction

dsh-diagram

English | 简体中文

npm version GitHub release license DeepSeek Harness

Turn any article already available in a DeepSeek Harness session into an editable Excalidraw canvas. The Agent creates the structure; you refine the text, nodes, and connections directly in DSH.

dsh-diagram canvas demo

Why dsh-diagram?

  • Editable, not disposable. Continue working in a full Excalidraw canvas instead of accepting a static generated image.
  • Built into the conversation. Open the Canvas tab without leaving the DSH session that contains the article.
  • Safe autosave. Revision-based compare-and-set prevents a stale editor from silently overwriting newer work.
  • Ready to share. Export .excalidraw, SVG, or PNG.
  • Model context stays explicit. Manual edits reach the Agent only when you ask it to call diagram_read.

Quick install

Requirements:

  • DeepSeek Harness 0.1.0-rc.6
  • Node.js ^22.19.0 or >=24.0.0
  • pnpm >=10 on PATH (the DSH plugin command delegates package management to pnpm)
  • DSH Web bound to 127.0.0.1

The commands below assume dsh is already on PATH:

dsh plugin --profile web add dsh-diagram@latest
dsh --profile web --dump-config
dsh web

The config dump should contain this block:

# == dsh-diagram
- id: diagram
  name: dsh-diagram

If DSH Web was already running, restart it after adding or updating the plugin. Then open an existing session and look for the Canvas tab.

Running DSH from source

Run the same commands from a DeepSeek Harness checkout that matches the supported 0.1.0-rc.6 APIs, replacing dsh with pnpm dsh:

pnpm dsh plugin --profile web add dsh-diagram@latest
pnpm dsh --profile web --dump-config
pnpm dsh web

Using DSH through npx

This works without a global dsh command, but its first run is slower. pnpm must still be on PATH.

npx -y @deepseek-ai/dsh@0.1.0-rc.6 plugin --profile web add dsh-diagram@latest
npx -y @deepseek-ai/dsh@0.1.0-rc.6 --profile web --dump-config
npx -y @deepseek-ai/dsh@0.1.0-rc.6 web

Create your first diagram

  1. Open a DSH session that already contains the article, or let the Agent read it with DSH's existing file or Web tools.

  2. Send a prompt such as:

    Create one clear diagram for this article. Choose the most suitable diagram type, call diagram_create, and keep the title and node labels concise.
    
  3. After the tool finishes, select Canvas at the top of the conversation.

  4. Edit the diagram directly. Saved means the Host has completed a durable write.

  5. Export the result, or ask the Agent to call diagram_read before continuing from your manual changes.

The plugin supports flowcharts, architecture diagrams, timelines, hierarchies, comparisons, and relationship diagrams.

What it adds

SurfaceBehavior
diagram_createCreates a diagram for the current Agent Session from a compact semantic specification.
diagram_readReads a bounded summary of the current editable scene into the conversation transcript.
Canvas tabOpens the Excalidraw editor only when selected, keeping it out of the normal chat startup path.
Diagram listSwitches between diagrams; collapses on desktop and becomes a selector on narrow screens.
AutosaveDebounced durable writes with revision conflict protection and tab-local pending-draft recovery.
ExportDownloads .excalidraw, SVG, or PNG files.

The plugin does not fetch articles and does not inject UI into arbitrary websites. Article acquisition stays with the DSH conversation, file tools, or Web tools.

Compatibility

ItemSupported in 0.1.1
DeepSeek Harness0.1.0-rc.6
Profileweb
Web bind address127.0.0.1 only
Node.js^22.19.0 or >=24.0.0
EditorExcalidraw 0.18.1
StoragePlugin-owned DSH storage-domain sidecar
Install artifactPrebuilt npm package or GitHub Release tarball with SHA-256 checksum

The npm package has no install lifecycle scripts. Installation adds a bundle to the selected DSH profile; it does not compile code or modify the DeepSeek Harness source tree.

Manage the installation

Update

dsh plugin --profile web update dsh-diagram

Restart DSH Web after the update.

Install the exact GitHub Release artifact

The release page publishes the same prebuilt tarball with a SHA-256 checksum:

dsh plugin --profile web add \
  https://github.com/hanzhangzzz/dsh-diagram/releases/download/v0.1.1/dsh-diagram-0.1.1.tgz

See v0.1.1 for the checksum and release notes.

Remove

dsh plugin --profile web remove dsh-diagram

Removing the bundle does not delete saved diagram sidecar data. Reinstalling the plugin can make that data available again to the same Session identity.

Data, security, and limits

  • The Excalidraw scene is the current document. The original semantic specification is retained only as its creation source.
  • A diagram is bound to its Session id and {createdAt, cwd} lifecycle fingerprint. A reused Session id cannot read older data.
  • Session fork and Session export do not copy or include diagram sidecar data.
  • Editor assets and fonts are self-hosted by the bundle; the canvas does not depend on an external CDN.
  • Static paths, RPC bodies, request origin, Session ownership, and scene contents are validated by the Host before persistence.
  • Images, iframes, embeddables, external links, and non-empty binary files are rejected in this release.
  • Defaults limit each scene to 1 MiB and all stored diagram records to 64 MiB. Element, text, diagram-count, and byte limits are explicit in cordis.patch.yml.
  • The plugin intentionally refuses to load when DSH Web binds to 0.0.0.0; this release does not expose the canvas RPC to a LAN.

Troubleshooting

The Canvas tab is missing

Confirm that you installed the plugin into the web profile, that --dump-config contains the dsh-diagram block shown above, and that DSH Web was restarted after installation.

The Agent does not know about my manual edits

Manual edits are not silently injected into model context. Ask the Agent to call diagram_read; its result is then recorded in the normal conversation transcript.

Can the plugin fetch an article from a URL?

No. First let DSH obtain the content through the conversation, a file tool, or a Web tool. Then ask for a diagram.

Why does startup fail with 0.0.0.0?

The canvas RPC is not designed for LAN exposure in this release. The plugin fails closed unless DSH Web is physically bound to 127.0.0.1.

What should I do after a revision conflict?

The editor keeps the local draft. Export it before choosing Reload server version if you need to preserve both versions.

Why can SVG export log a font fallback warning?

Under the strict content security policy, Excalidraw may fall back from glyph subsetting to embedding the full self-hosted font. The exported SVG remains self-contained; the plugin does not enable unsafe-eval to suppress the warning.

Build from source

git clone https://github.com/hanzhangzzz/dsh-diagram.git
cd dsh-diagram
pnpm install --frozen-lockfile
pnpm run bundle
pnpm pack

Install the generated tarball from a DeepSeek Harness checkout:

cd /path/to/deepseek-harness
pnpm dsh plugin --profile web add /absolute/path/to/dsh-diagram-0.1.1.tgz
pnpm dsh --profile web --dump-config
pnpm dsh web

Developer checks:

pnpm run typecheck
pnpm run test
pnpm run bundle
pnpm pack --json
pnpm run smoke:dsh-install

See DESIGN.md for the product and implementation decisions.

Contributing

Bug reports and focused pull requests are welcome in GitHub Issues. If the plugin improves your article-to-diagram workflow, a GitHub star helps other DSH users discover it.

License

The plugin's own code is licensed under MIT. Licenses for bundled JavaScript and self-hosted fonts are listed in THIRD_PARTY_NOTICES.md and third_party_licenses/.