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.

Antv Infographic — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

dsh-antv-infographic

Antv Infographic

AntV Infographic renderer for DeepSeek Harness: render AI-generated infographic fences inline with streaming, editing, and SVG/PNG export.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:HellowVirgil/dsh-antv-infographic#772040f6f4acfd51a58d421763969840c06bf3b8
READMECompatibilityVersions

Compatibility and provenance

Antv Infographic is published as dsh-antv-infographic and currently resolves to version 0.1.1. 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/21/2026

Versions

0.1.1stable
8/21/2026
0.1.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
8/21/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 vision-media.

Tool Describe Image@linxin666/dsh-tool-describe-imageModel-facing describe_image tool for the dsh web GUI: gives a text-only model image understanding by asking a vision-language model at an OpenAI-compatible endpoint to describe one image (local path, http(s) URL, or attachment reference). Hot-pluggable — Modlens@liustack/modlensPlug-in vision for text-only LLMs, powered by the free Antigravity CLIVision Toolkit@anionex/dsh-vision-toolkitDeepSeek Harness-native integration for agent-vision-toolkit: image Q&A, OCR, grounding, UI restoration, pixel diff, Artifacts, and Web UI.Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio and 27 editable video templates as a native DeepSeek Harness conversation view.

README

🌐 简体中文 | English

dsh-antv-infographic

Render editable and exportable AntV Infographic SVGs directly inside DeepSeek Harness (DSH) replies.

Preview

dsh-antv-infographic rendering an editable AntV Infographic inside DSH

Actual DSH rendering with progressive generation, local editing, SVG/PNG export, and DSL copying.

The model emits an infographic fenced block, and the plugin progressively renders the AntV Infographic DSL as SVG:

```infographic
infographic sequence-timeline-rounded-rect-node
data
  title Product roadmap
  sequences
    - label Research
      desc Identify the user problem
    - label Launch
      desc Release and validate
```

Features

  • Supports roughly 200 AntV Infographic templates
  • Progressively renders while the model streams its response
  • Starts in view mode and can switch to local editing mode
  • Exports SVG or PNG and copies the source DSL
  • Uses the DSH fence-registry when available, with a DOM fallback for older hosts
  • Lazy-loads the AntV engine without blocking the initial DSH page load
  • Limits model-generated source size and blocks executable markup, dangerous URLs, and private-network resources
  • Includes an optional antv-infographic Skill with richer template-selection and DSL-generation guidance

Installation

Install the published package directly into a DSH profile:

dsh plugin --profile web add dsh-antv-infographic

This command installs everything required for DSH to generate and render infographic blocks. A separate Skill installation is not required.

Restart dsh web and hard-refresh the browser after installation.

Install from source

git clone https://github.com/HellowVirgil/dsh-antv-infographic.git
cd dsh-antv-infographic
pnpm install
pnpm run check
dsh plugin --profile web add "link:$PWD"

If the profile already contains an older version, remove it before adding the local link again:

dsh plugin --profile web remove dsh-antv-infographic
dsh plugin --profile web add "link:$PWD"

Optional: Install the Skill

The plugin already injects the essential DSL contract into the DSH system prompt. Install the Skill only if your agent environment discovers ~/.agents/skills and you want more detailed template guidance and examples for complex infographics.

From a source checkout:

mkdir -p ~/.agents/skills/antv-infographic
cp SKILL.md ~/.agents/skills/antv-infographic/SKILL.md

Or download the packaged Skill directly from GitHub:

mkdir -p ~/.agents/skills/antv-infographic
curl -fsSL https://raw.githubusercontent.com/HellowVirgil/dsh-antv-infographic/main/SKILL.md \
  -o ~/.agents/skills/antv-infographic/SKILL.md

Try this prompt in a new session:

Use infographic to create a roadmap from product research to scaled launch.

The following browser console message confirms that the client is active:

[dsh-antv-infographic] client active; fence-channel=registry

Older hosts display fence-channel=dom instead.

How it works

The plugin has three parts:

  1. The Node.js plugin injects the infographic DSL contract into the DSH system prompt.
  2. The browser adapter recognizes fenced blocks and renders them with AntV Infographic.
  3. The main AntV engine is served as a separate resource and loaded on demand from the plugin's HTTP route.

When DSH provides a fence registry, the plugin registers a renderer directly. Otherwise, it observes the conversation DOM and replaces infographic code blocks with the same rendering component.

Scope

Best for roadmaps, timelines, processes, capability maps, hierarchies, comparisons, data stories, and executive summaries.

Not intended for forms, operational buttons, quizzes, complex business panels, or interactions whose results must be sent back to the model.

Development

pnpm test
pnpm build
pnpm run verify:pack

Main entry points:

  • src/plugin/index.ts: prompt injection and asset route
  • src/client/index.tsx: DSH client registration
  • src/client/InfographicBlock.tsx: AntV UI, editing, and export
  • src/client/dom-fence.tsx: fallback for older hosts
  • src/client/asset-infographic.ts: lazy AntV engine bundle

License

MIT. AntV Infographic is also licensed under MIT.