DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

A2ui Plugin — DeepSeek Harness 插件(DSH Plugin)
← Plugins
A

@chenjie1129/dsh-a2ui-plugin

A2ui Plugin

面向 DeepSeek Harness 的结构化、可重放 A2UI 交互卡片

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:chenjie1129/deepseek-harness-a2ui#317d83d87483996f42992bda33337c64c9ba05de
README兼容性版本

兼容性与来源证明

A2ui Plugin 以 @chenjie1129/dsh-a2ui-plugin 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/29

版本

0.1.1stable
2026/8/29
0.1.0stable
2026/8/26

相关插件

正在加载相关插件…

最新版
0.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/8/29
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Deepseek Idesigndeepseek-idesign作为原生 DeepSeek Harness 对话视图的 iPolloWork Design Studio 及其精选设计模板。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Dream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每款皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。在原生 DSH Web 和第三方桌面客户端(DSH Desktop)中运行:8 款原创高端主题、玻璃材质、壁纸 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.