Introduction

The philosophy of DSH is “Everything is a Plugin,” and the community directory is an independent site with no official affiliation with DeepSeek/Huafan. For agent developers, models often need to output information such as roadmaps, timelines, processes, capability maps, etc. If this information only appears as Markdown code blocks, developers often need to copy the DSL, open an external tool to render it, and then export to SVG or PNG. dsh-antv-infographic brings this process back into the DSH response: after the model outputs an infographic fenced block, the plugin can render it directly into an AntV Infographic SVG, supporting local editing and export.

What is this

dsh-antv-infographic is a DSH plugin maintained by HellowVirgil with an MIT license. It is used to render editable, exportable AntV Infographic SVG within DeepSeek Harness (DSH) responses.

Core Capabilities

The main capabilities are introduced below:

  • Supports approximately 200 AntV Infographic templates.
  • Progressive rendering during model streamed responses.
  • Enters view mode by default, with the option to switch to local editing mode.
  • Exportable as SVG or PNG, with the ability to copy the source DSL.
  • When DSH has fence-registry available, the plugin uses this registration mechanism; older hosts use DOM fallback, showing fence-channel=dom instead of fence-channel=registry.
  • Loads the AntV engine on demand, blocking the DSH initial page load.
  • Limits the size of model-generated source and blocks executable markup, dangerous URLs, and private-network resources.
  • Provides an optional antv-infographic Skill for more detailed template selection and DSL generation guidance.

Installation and Usage

  1. Install the plugin to the web profile:
dsh plugin --profile web add dsh-antv-infographic
  1. After installation, restart dsh web and perform a hard refresh in the browser.

  2. If the agent environment reads ~/.agents/skills and you want more detailed template selection and DSL generation guidance, you can install the optional Skill: copy SKILL.md to ~/.agents/skills/antv-infographic/SKILL.md. The plugin itself does not require a separate Skill installation.

Typical Usage

In a new session, you can use the following sample prompt:

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

After the model outputs an infographic fenced block, the plugin will progressively render it into an AntV Infographic SVG. Following the steps above, you can view the infographic in the DSH response and edit it locally, export SVG/PNG, or copy the source DSL.

Suitable Scenarios and Notes

Suitable for the following scenarios:

  • roadmaps
  • timelines
  • processes
  • capability maps
  • hierarchies
  • comparisons
  • data stories
  • executive summaries

Not suitable for the following scenarios:

  • forms
  • operational buttons
  • quizzes
  • complex business panels
  • interactions whose results must be sent back to the model

Note: The plugin will limit the size of the model-generated source and block executable markup, dangerous URLs, and private-network resources. Since the plugin runs with the permissions of the current dsh process, you should check the source code and license before installation. The plugin license is MIT, and AntV Infographic is also MIT.

Related Links

  • Catalog page (provided by catalog_url field; the catalog is an independent site with no official affiliation with DeepSeek/Huafan): https://www.skillhub.cn/plugins/HellowVirgil/dsh-antv-infographic
  • GitHub: https://github.com/HellowVirgil/dsh-antv-infographic