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.

Model Sync — DSH Plugin for DeepSeek Harness
← Plugins
M

@dsh-external/dsh-model-sync

Model Sync

One-click / auto model sync for DeepSeek Harness providers — reconciles stored model lists against each provider's /v1/models endpoint, with a Settings page toggle and conversation-open auto-sync.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zhangyqjiaoshou-oss/dsh-model-sync#771a164af3541b597299cace8896e720fff613a9
READMECompatibilityVersions

Compatibility and provenance

Model Sync is published as @dsh-external/dsh-model-sync and currently resolves to version 1.0.0. 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

1.0.0stable
8/29/2026

Related plugins

Loading related plugins…

Latest
1.0.0
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 models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

dsh-model-sync

一键同步 / 自动同步 DeepSeek Harness 供应商模型列表。插件会自动查询每个供应商的 /v1/models 接口,把配置里存储的模型列表完全替换为供应商返回的最新列表(下架的模型会移除,其他字段保留)。

One-click / auto model sync for DeepSeek Harness providers. Queries each provider's /v1/models endpoint and replaces the stored model list with what the endpoint advertises (models the endpoint no longer lists are removed; other provider fields are kept).

功能 / Features

  • 手动同步(Manual sync):设置页「模型同步」面板内一键同步所有已配置供应商。同步在浏览器内通过官方 settings / llm 接口完成,无需自定义 Host RPC。
  • 自动同步(Auto-sync):打开任何会话页时自动重新同步(Host 端监听 agent/session-start,带 10 秒防抖)。开关状态持久化在本插件的 model-sync 设置命名空间 + localStorage。
  • 完全替换语义:发现列表即最终列表——供应商下架或新增的模型都会正确反映。
  • 失败隔离:单个供应商查询失败不影响其他供应商,失败的供应商保留原配置。

安装 / Installation

npx(推荐,无需事先安装任何东西)

# 一键安装插件到当前 DSH web profile
npx github:zhangyqjiaoshou-oss/dsh-model-sync install

你发 npm 后这个命令会变成 npx @dsh-external/dsh-model-sync install。目前走 GitHub 直装通道。

dsh plugin add(需 bundle 支持的环境)

dsh plugin --profile web add @dsh-external/dsh-model-sync

手动注入(通过 dsh-super-injector)

# 从源码构建
bash scripts/build.sh
# 注入到当前运行的 DSH
dev_inject_plugin C:/Users/niclas/Desktop/dsh/model-sync

使用方法 / Usage

  1. 打开 设置 → 模型同步(Settings → Model Sync)。
  2. 点 同步所有模型(Sync All Models)立即同步;或打开 打开会话页时自动同步(Auto-sync on conversation open)开关,之后每次打开会话页都会自动刷新模型。
  3. 每个供应商显示 ✅ 共 N 个 (+新增 -移除),失败显示 ❌ 与原因。

配置 / Configuration

字段类型默认说明
autoSyncbooleanfalse打开会话页时自动同步模型
debounceMsnumber10000两次自动同步的最小间隔(毫秒)

自动同步开关也可在设置页 UI 里切换,改动写入 model-sync 命名空间。

工作原理 / How it works

打开会话页 → agent/session-start 事件(Host)
  → 重新查询每个供应商 /v1/models
  → settings.update 写入新模型列表
  → settings/document-updated 事件派发
  → 浏览器模型选择器自动刷新

手动同步完全走官方 wire API(llm.discoverModels + settings.mutate),不依赖任何自定义 Host RPC。

许可 / License

MIT