DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@deepseek-ai/dsh-model-audit

Model Audit

用于请求和响应模型元数据的独立本地 DSH 插件;并非官方 DeepSeek 插件

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

npx -y @deepseek-ai/dsh plugin --profile web add github:jghwwnq/dsh-model-audit#982d77402df30e10be4d2010250cfecf9a558a88
README兼容性版本

兼容性与来源证明

Model Audit 以 @deepseek-ai/dsh-model-audit 发布,当前版本为 0.1.7-rc.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.7-rc.2prerelease
2026/9/25

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Usage@linxin666/dsh-usage用于 dsh Web GUI 的使用统计插件:检测各提供商的余额和编程套餐配额,并实时记录令牌使用情况;侧边栏 Settings 行上方显示紧凑的价格概览卡片Whale Widgetdsh-whale-widgetDSH Web 界面右下角的 DeepSeek 余额小鲸鱼挂件:余额/今日已用/峰谷定价、自定义泡泡点击序列(文本/余额/今日/峰谷/图片/随机语句与并列加权选择)、逐行样式与字体、悬浮快捷编辑、音效与每轮消耗、自定义角色/动图/音效、吸附与翻转自定义Commandcode Provider@mars-sea/dsh-commandcode-provider适用于 Command Code 的非官方 DeepSeek Harness LLM 提供商插件,移植自 pi-commandcode-provider(MIT)。注册“commandcode”提供商路由,并在 Models 页面添加卡片和实时模型目录。Plugin Subscriptionsdsh-plugin-subscriptions将 ChatGPT (Codex)、Claude、Grok (X Premium)、GitHub Copilot 和 Google Antigravity 订阅用作 DeepSeek Harness LLM 提供商,并通过网页设置页面使用 OAuth 登录

README

DSH Model Audit — independent local plugin

中文安装与维护说明

An unofficial, independently built and installed plugin for DeepSeek Harness. It compares the actual outgoing request model with the upstream response model for DeepSeek Messages, GPT Responses and Chat Completions, in both the Web version and the desktop application.

Not affiliated with or endorsed by DeepSeek. The @deepseek-ai/dsh-model-audit package ID is kept from the original local install for configuration migration; this package is not published to npm, and the name is local-only — do not publish it under DeepSeek's npm scope. Licensed under MIT.

Install the directory or packed tarball with DSH's plugin manager, or:

dsh plugin --profile web add /absolute/path/to/dsh-model-audit --offline --ignore-scripts

The desktop application owns its profile exclusively, so the CLI refuses --profile desktop; install there from the application's own plugin page (Installed plugins → add the absolute directory path) instead.

The package appears under Installed plugins. After the first external-directory installation, restart DSH once so the host registers that linked package's peer resolution. A path change from an already loaded version also requires a restart. Then enable Model monitor, open its detail panel and select Open monitor; subsequent on/off switches work live. Records are held only in memory and are cleared on disable/restart.

Open monitor behaves per surface: the Web version opens the dashboard in a new browser tab, while the desktop application renders it inside the application window, because that shell denies every popup on its own dsh-app: scheme. The desktop view fetches the same authenticated document and renders it in a same-origin frame; close it with the header button or Escape. Host-side plugin changes still need a desktop restart, because an already imported module stays cached for the life of that process.

The package contains built host/browser artifacts. It does not edit the official repository, workspace, lockfile, built-in roster, or user credentials. All runtime framework imports use DSH's host-supplied peer dependencies. Plugin version 0.1.7-rc.2 targets and is tested against DSH 0.1.7-rc.2; future host API changes may require a plugin update.

To upgrade from 0.1.7-rc.1, install the updated directory or deepseek-ai-dsh-model-audit-0.1.7-rc.2.tgz, then reload DSH so it reads the new package version and peers. This release passes the native compatibility check without a version exemption; 0.1.7-rc.1 stopped passing it because DSH 0.1.7-rc.2 split the Messages adapter config, and the plugin's bundled test fixture now loads @deepseek-ai/dsh-llm-deepseek-api-key for the API-key provider. Keep the older plugin package when using the older DSH release.

Only calls through llm/stream and global fetch are observed. WebSocket, private transports and replay are reported as unobserved. The dashboard retains model/response identifiers, usage, timing and call-purpose metadata, not prompts, completions or credentials. An upstream model-name declaration cannot attest model weights or compute allocation.

For development, link to a built, unmodified DSH checkout without modifying it:

node scripts/link-dev.mjs /absolute/path/to/deepseek-harness
npm run build
npm test
DSH_SOURCE=/absolute/path/to/deepseek-harness npm run test:web
npm pack --ignore-scripts

The web suite uses the stock host's test scaffold via the explicit DSH_SOURCE development setting. Runtime use does not need that setting. Bundled parser licensing is in THIRD_PARTY_NOTICES.txt.

Repository layout

  • src/ — host half (index.ts, monitor.ts, parser.ts, dashboard.ts, locales.ts) and browser half (src/client/).
  • lib/ — committed build output (lib/index.js, lib/client.js and their types) that DSH loads; npm run build regenerates it.
  • tests/ — monitor unit tests, a real Loader composition over the stock DeepSeek/GPT adapters, and a browser integration suite; tests/expected/ holds their expected output.
  • scripts/link-dev.mjs — links this plugin's development dependencies to an already-built DSH checkout without modifying it.
  • dist/ — untracked local npm pack artifacts.

Supported host versions are exact: this release targets DSH 0.1.7-rc.2 and DSH refuses an incompatible plugin at load rather than risking a crash, so a newer DSH prerelease may need a matching plugin update. MIT license; the only third-party code inside the artifacts is eventsource-parser, and every framework import resolves to the host's own DSH packages at runtime.