DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Svw Waveform — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
S

dsh-svw-waveform

Svw Waveform

DeepSeek Harness 的原生 SVW 波形渲染插件

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

npx -y @deepseek-ai/dsh plugin --profile web add github:svcomplex-dev/dsh-svw-waveform#8c7082f27672aae3dc7aeac8fb2185a68643109b
README兼容性版本

兼容性与来源证明

Svw Waveform 以 dsh-svw-waveform 发布,当前版本为 0.1.4。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.4stable
2026/9/10
0.1.2stable
2026/8/30
0.1.1stable
2026/8/29
查看其余 1 个版本收起版本
0.1.0stable
2026/8/24

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Tool Describe Image@linxin666/dsh-tool-describe-image面向模型的 describe_image 工具,用于 dsh Web GUI:通过在兼容 OpenAI 的端点调用视觉语言模型,为文本模型提供图像理解能力,以描述一张图像(本地路径、http(s) URL 或附件引用)。可热插拔 —Modlens@liustack/modlens面向仅支持文本的 LLM 的插件视觉能力,由免费的 Antigravity CLI 提供支持Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio,以及 27 个可编辑视频模板,以原生 DeepSeek Harness 对话视图呈现。Imagegen@dickpy/dsh-imagegendsh Web GUI 的 AI 图像生成插件:通过可配置的提供商渠道实现文生图和图生图(gpt-image-2 / grok-imagine-image / nanobanana series / seedream-5.0-pro / dall-e-3,支持原生 xAI Grok Imagine、Google Nano Banana a

README

dsh-svw-waveform

Native SVW waveform rendering for DeepSeek Harness.

The plugin registers svw_wave_render. The model supplies an exact VCD or FST path, native tick range, and one to twelve hierarchical signal names. In the DeepSeek Harness Web UI the result becomes an interactive waveform viewer with zoom, pan, markers, radix selection, edge navigation, and delta-cycle markers. Surfaces without the client plugin fall back to the complete ANSI terminal waveform card.

Install

Install the public npm bundle into the Web profile:

dsh plugin --profile web add dsh-svw-waveform
dsh --profile web --dump-config
dsh --profile web

The npm bundle selects a package-private SVW executable for Linux x64 or macOS arm64. It does not compile on the consumer machine and has no install, postinstall, or prepare script. Set SVW_BIN=/absolute/path/to/svw to use an independently installed binary instead. On macOS, an existing Homebrew SVW installation is also accepted as a fallback.

DeepSeek Harness is still a developer preview. This package currently supports the @deepseek-ai/dsh 0.1.x release-candidate line and tests every change against a pinned version before publication.

Use

First obtain exact signal names:

svw agent design.vcd signals reset 20

Then ask the agent to display a bounded window, or call the registered tool with arguments equivalent to:

{
  "waveform": "design.vcd",
  "start": 100,
  "end": 160,
  "hier": ["top.clk", "top.reset_n"],
  "width": 120,
  "height": 24
}

The bundled svw-waveform skill teaches the agent the complete discovery, value/change, render, comparison, semantic-design, UVM, and coverage workflows.

Artifact provenance

SVW GitHub Releases are the only binary source. This repository never rebuilds SVW. Its release workflow:

  1. downloads the exact release-X.Y.Z Linux and macOS archives and SHA256 sidecars;
  2. rejects unsafe archive paths and extracts only declared regular files;
  3. smoke-tests svw --version, waveform metadata, and a real render;
  4. audits dynamic libraries on clean GitHub-hosted runners;
  5. packages the byte-identical bin/svw files into platform-specific npm packages before publishing the entry bundle.

The platform packages are:

  • dsh-svw-waveform-linux-x64
  • dsh-svw-waveform-darwin-arm64

Each package includes svw-provenance.json with the source Release asset and both archive and binary SHA256 values. Replacing an asset under the same SVW tag creates a new immutable plugin patch version rather than overwriting an npm version.

The host and browser integration are synchronized from the versioned share/svw/agents/dsh-extension files inside the same verified SVW archive. svw-source.json records their original hashes and the small downstream packaging transforms.

Publishing setup

The publish.yml workflow accepts either repository_dispatch event svw-release-published or a manual release-X.Y.Z input. It supports a temporary NPM_TOKEN for bootstrapping the three package names. After that, configure npm Trusted Publishing for each package with:

  • GitHub organization: svcomplex-dev
  • repository: dsh-svw-waveform
  • workflow filename: publish.yml
  • allowed action: npm publish

Once all three trusted publishers work, remove NPM_TOKEN. The workflow uses GitHub OIDC and publishes npm provenance automatically.

Development

npm run verify
sh scripts/setup-git-hooks.sh

All commits and annotated package tags must use svcomplex-dev <code@svcomplex.ai>.