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.

Healthcheck — DSH Plugin for DeepSeek Harness
← Plugins
H

dsh-healthcheck

Healthcheck

DeepSeek Harness environment health check plugin: detects disk usage, memory usage, latency, cache bloat, and outdated plugin versions, with historical baseline trend comparisons. Read-only; does not delete anything. Incorporates the health-check methodology of sys-doctor/pc-guardian.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:taxueseek/dsh-healthcheck#552763ce305330c8ad4f9df80a673a1bfcfe465b
READMECompatibilityVersions

Compatibility and provenance

Healthcheck is published as dsh-healthcheck and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/22/2026

Versions

0.1.1stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
8/24/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-healthcheck

DeepSeek Harness 环境体检插件:一个 health_check 工具,只读体检你的 dsh 环境,产出分级报告(CRITICAL / WARNING / INFO),并对比上次体检的趋势。

融入 sys-doctor 的体检方法论(指标快照 + 历史基线 + 趋势对比 + 大目录定位),并针对 dsh 环境增加专属体检项。

体检项

类别内容分级
磁盘APFS 数据卷使用率(/System/Volumes/Data,避免系统卷误导)≥90% CRITICAL / ≥80% WARNING
磁盘趋势对比上次体检的已用增量(GB)增量 >5GB WARNING
内存macOS 内存压力(vm_stat 换算)≥80% WARNING
网络ping 8.8.8.8 平均延迟≥150ms WARNING
~/.dsh 膨胀clipboard 图片、sessions、profiles、storages 各目录大小≥1GB WARNING
插件版本对比 npm registry 最新版有新版 INFO
工具链brew/npm/pnpm/node/python3/git/gh/zstd 可用性缺失 INFO

只读设计:只体检和报告,绝不自动删除任何东西。清理动作由模型根据报告建议、你确认后执行。

数据

  • 历史基线:~/.dsh/health/history.jsonl(每次体检追加一条,保留最近 200 条)
  • 首次体检即建立基线,下次自动对比趋势

安装

dsh plugin --profile web add "github:taxueseek/dsh-healthcheck#main&path:."
# 重启 dsh web

(本地开发:dsh plugin --profile web add /path/to/dsh-healthcheck)

用法(模型视角)

用户说「体检一下」「看看磁盘」「环境是不是有问题」→ 模型调用 health_check,返回分级报告:

# 环境体检报告
总体: HEALTHY | CRITICAL 0 / WARNING 0 / INFO 4
- [INFO] 磁盘使用率 62.5%,可用 285.3 GB
- [INFO] 内存压力 34.2%
- [INFO] 网络延迟 18 ms
~/.dsh 数据目录:
  1.2 GB  ~/.dsh/sessions
插件版本:
  dsh-context: 0.5.0 → 0.7.3(可升级)

配置

- id: healthcheck-toolkit
  name: 'dsh-healthcheck'
  config:
    stateDir: '~/.dsh/health'    # 历史基线目录
    historyLimit: 200            # 保留快照条数
    diskWarnPct: 80              # 磁盘 WARNING 阈值(%)
    diskCriticalPct: 90          # 磁盘 CRITICAL 阈值(%)
    memoryWarnPct: 80            # 内存压力 WARNING 阈值(%)
    latencyWarnMs: 150           # 延迟 WARNING 阈值(ms)
    scanTimeoutMs: 30000         # 单次扫描超时

开发

npm install --include=dev
npm test          # node --test 单元测试
npm run build     # tsc 编译

许可

MIT

安装

```sh dsh plugin --profile web add taxueseek/dsh-healthcheck ```

贡献

欢迎提交 PR。