DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-perfscope

Perfscope

一键检查并评分你的 DeepSeek Harness 插件。扫描 → 评分 → 修复 → 分享。适用于 dsh 的 PerfScope。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Evhye38496/dsh-perfscope#97b8afabe1d326345398e50f305af4b7cc59b01c
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.1stable
2026/8/23

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

⚡ dsh-perfscope

PerfScope for DeepSeek Harness — one-click health check & score for your installed plugins.

Scan → Score → Fix → Share, all local. Is your Harness healthy? Find out in one click.

dsh plugin --profile web add dsh-perfscope

(listing in the dsh-market registry pending — see Project plan)


Why

DeepSeek Harness is young, and its plugin ecosystem is exploding — thousands of plugins, skins, tools, and presets appear weekly. After you install a few dozen, questions show up fast:

  • Which plugin is actually broken or silently failing?
  • Which ones slow down every session or eat tokens?
  • Am I running duplicates, conflicts, or stale plugins I forgot about?
  • Is my setup trustworthy — or a pile of random tags?

The ecosystem has no "health check" yet. dsh-perfscope fills that gap: one click gives you a 0–100 health score, a plain-language issue list, and safe one-click fixes you can undo anytime.

This is the same methodology that powers our VS Code tool, PerfScope — adapted to the agent-harness world, where every run is traceable and runtime data is richer than any IDE.

What it checks

Health score = three dimensions, weighted configurable (default 0.6 / 0.25 / 0.15):

DimensionQuestionExamples of signals
Hard healthCan it actually be used?mount failures, unmet dependencies, core version conflicts, invalid config, incompatibility with your dsh RC
Runtime healthIs it fast and stable?tool error/timeout rates, average latency vs. baseline, token / context share
Governance healthIs it tidy and trustworthy?overlapping capabilities, stale plugins, sources outside curated registries

Severity grading critical / warning / suggestion — every finding is one sentence a human can act on.

Safety first

  • Reads your plugin tree and session/telemetry stats locally. Nothing ever leaves your machine by default.
  • Fixes only write patch rows to cordis.patch.yml (- id: … + disabled: true, the official patch layer) — never uninstalls, deletes, or edits source.
  • Every write is previewed first, recorded in the Doctor Change Log, and reversible with one click.
  • Host-critical plugins and hand-edited patch rows are protected from one-click toggles.

Install

dsh plugin --profile web add dsh-perfscope

Restart dsh web, then open Settings → dsh-perfscope.

Prerequisites: Node ^22.19.0 or 24+. Targets dsh 0.1.0-rc.8 (pinned post-SPIKE; preview moves fast — see roadmap).

Usage

Web UI — Settings → dsh-perfscope: run a full check, read your score card, apply safe fixes with preview, undo any fix, export a report. (v1.0)

Headless / CI — scan the real host, fix, undo:

# scan the live dsh profile (read-only; no model key needed)
npx dsh-perfscope scan --profile web --format markdown --out report.md
# shareable score card
npx dsh-perfscope scan --profile web --format html --out scorecard.html
# one-click safe fix (writes cordis.patch.yml, HMR applies in ~1s) and undo
npx dsh-perfscope fix --profile web --disable broken-plugin
npx dsh-perfscope fix --profile web --undo
# offline JSON snapshot mode (no dsh host needed, for CI/fixtures)
dsh-perfscope --input test/fixtures/scan-input.json --format markdown --out report.md

Options: --registry (optional online check of npm publish time / curated status), --sessions-dir, --dsh-cli, --dsh-home.

Development

pnpm install
pnpm test          # pure engine + change-log tests
pnpm run typecheck
pnpm run build     # bundle via tsup

Repository layout and the SPIKE notes that gate host integration live in PROJECT.md (§5). The dsh-facing glue (scanner/, ui/, standalone bootstrap) is stubbed until SPIKE confirms the data contract against the pinned RC.

Roadmap

  • S1 SPIKE — done (2026-08-20): dump-config reconstruction and patch+HMR loop confirmed at source level; session-level runtime stats free, per-plugin attribution needs self-built mapping (v1.1). See SPIKE-S1.md.
  • S2 v0.1 — done (2026-08-23): real-host scanner (scan), headless fix/undo writing cordis.patch.yml, offline JSONL session analysis (zstd supported), report + score card. npm name locked to dsh-perfscope.
  • S3 上架 — awesome-dsh-plugin registry PR, dsh-plugin topic, directories.
  • v1.0 — Web UI settings panel, runtime-health dimension wired from session logs.
  • v1.1 — per-plugin runtime attribution (tool-name→plugin mapping).

Community

  • Tag your setup reports and feature ideas in GitHub Discussions (link incoming).
  • Plugin discoverability: covered by the dsh-plugin topic; listed in the awesome-dsh-plugin registry (pending).

License

MIT © 2026 Evhye. Mirrors the PerfScope project license.


Unofficial, open-source project. Not affiliated with DeepSeek AI.