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.

A2ui Plugin — DSH Plugin for DeepSeek Harness
← Plugins
A

@chenjie1129/dsh-a2ui-plugin

A2ui Plugin

Structured, replayable A2UI interaction cards for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:chenjie1129/deepseek-harness-a2ui#317d83d87483996f42992bda33337c64c9ba05de
READMECompatibilityVersions

Compatibility and provenance

A2ui Plugin is published as @chenjie1129/dsh-a2ui-plugin 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/29/2026

Versions

0.1.1stable
8/29/2026
0.1.0stable
8/26/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
★ 1
Weekly downloads
0
Last push
8/29/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 ui-customization.

Deepseek Idesigndeepseek-idesigniPolloWork Design Studio and its curated design templates as a native DeepSeek Harness conversation view.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.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 WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

DeepSeek Harness A2UI

A standalone DeepSeek Harness plugin for structured, replayable user interaction. It gives the model one a2ui_present Tool and renders the result as a native Harness Tool card without patching Harness core.

The wire format follows the current A2UI v0.9.1 protocol and its Basic Catalog.

Version 0.1 intentionally starts with a safe, useful subset: multi-field forms, contextual choices, review/confirm cards, and read-only progress. The model sends a bounded template, not arbitrary UI code. User actions return structured data to the model; any real-world effect still goes through ordinary Harness tools, approvals, and policy.

Install

DeepSeek Harness 0.1.0-rc.5 or a compatible later 0.1 prerelease is required. Version 0.1.1 was verified against both the current 0.1.0-rc.5 source checkout and the earlier 0.1.1-rc.2 package contracts. Until an npm release exists, clone this repository, build and pack it, then add the tarball to a profile:

npm ci
npm run check
npm pack
dsh plugin --profile web add ./chenjie1129-dsh-a2ui-plugin-0.1.1.tgz

Restart that profile after installation. The bundle patch mounts the host Tool automatically, and the package's dsh.client entry mounts the React card in the web UI.

What the model can present

  • form: text, multiline, checkbox, and single-choice fields
  • choice: a focused choice with optional supporting fields
  • review: structured sections plus explicit confirm/cancel actions
  • status: read-only progress steps; it returns immediately

All interactive surfaces wait for one valid user action. The output includes surface_id, outcome, action, and the complete declared data model. A single-choice field uses the Basic Catalog's ChoicePicker representation and returns a zero-or-one-item string array.

Configuration

actionTimeoutMs: 600000
maxPayloadBytes: 65536
authority: loopback

loopback is the safe default. Use trusted-host only when the Harness web UI is intentionally served through a configured trusted host. It is not an authentication mechanism.

Why this shape

  • Replay-stable: the UI is rebuilt from durable Tool arguments and results.
  • Reconnect-friendly: the browser can refresh while the host-side call remains pending.
  • Exactly once: duplicate and stale submissions fail closed.
  • Structured fallback: every call requires complete fallback_text for generic/raw views.
  • No hidden authority: an A2UI button reports intent; it cannot directly run a side effect.

See Architecture, Verification, and Security. A Chinese guide is available in README.zh-CN.md.

Compatibility and non-claims

The plugin emits the A2UI 0.9.1 v0.9 wire envelope and a bounded subset of the official v0.9 Basic Catalog. It is not a full renderer for arbitrary A2UI catalogs and does not claim AG-UI or A2A compatibility. React 19-only upstream renderer packages are deliberately not embedded in the Harness React 18 web app.