DeepSeek Harness 插件

dsh-disk-audit

dsh 数据目录磁盘占用审计:总大小、按目录拆分、最大文件、超大文件告警(会话日志可达数百 MB)与清理建议——CLI + agent 可调用 disk_audit 工具,dsh-disk-audit/v1 报告,零运行时依赖、只读。

跳到安装方式

来源信息

GitHub 仓库
zoahdev/dsh-disk-audit
最近更新
2026年8月20日
分类
插件开发工具
GitHub stars
0

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/zoahdev/dsh-disk-audit
GitHub:https://github.com/zoahdev/dsh-disk-audit
插件名:dsh-disk-audit
作者:zoahdev
安装命令:dsh plugin --profile web add github:zoahdev/dsh-disk-audit

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-disk-audit

![npm](https://www.npmjs.com/package/dsh-disk-audit)

![CI](https://github.com/zoahdev/dsh-disk-audit/actions) ![License: MIT](LICENSE) ![dsh-plugin](https://github.com/topics/dsh-plugin)

Disk-usage audit for DeepSeek Harness (dsh) data directories: total size, per-directory breakdown, largest directories, oversized files and cleanup suggestions.

Session logs can grow to hundreds of megabytes (the ecosystem has even seen the ~512 MB stringify cap). This plugin tells you where the space went before it becomes a problem. Zero runtime dependencies, read-only.

Install

dsh plugin add dsh-disk-audit

Or run standalone:

npx dsh-disk-audit ~/.dsh

CLI

dsh-disk-audit [dir] [options]

  --json                   print the machine-readable dsh-disk-audit/v1 report
  --large-file <bytes>     warn threshold per file (default 104857600 = 100 MB)
  --skip-node-modules      do not descend into node_modules trees
  --help                   show this help

Exit codes: 0 clean, 1 warnings (oversized files / total above threshold), 2 usage/IO error.

npx dsh-disk-audit ~/.dsh
npx dsh-disk-audit ~/.dsh --json --large-file 52428800

In-harness usage (agent-callable)

Ask your dsh agent:

> 看看我的 dsh 数据目录占了多少磁盘,最大的文件是哪些。 > Audit disk usage of my dsh data directory: disk_audit.

The tool returns a dsh-disk-audit/v1 report:

{
  "schema": "dsh-disk-audit/v1",
  "target": "~/.dsh",
  "ok": false,
  "totalBytes": 157286400,
  "totalFiles": 1842,
  "dirs": [ { "dir": "~/.dsh/sessions", "sizeBytes": 146800640, "files": 42 } ],
  "largestFiles": [ { "path": "~/.dsh/sessions/big.jsonl", "sizeBytes": 134217728 } ],
  "warnings": ["1 file(s) at or above 100 MB"],
  "suggestions": ["Export/compress the largest session logs before they hit the stringify cap"]
}

Why it exists

  • Session logs are append-only and can silently eat gigabytes; no other plugin reports disk usage by directory.
  • Catching a 500 MB session log before it hits the stringify cap is a lot cheaper than recovering after.
  • Zero runtime dependencies, read-only by construction — it never deletes or moves anything.

Development

pnpm install
pnpm typecheck
pnpm build
pnpm test
pnpm test:integration

CI runs the dsh-plugin-doctor preflight, unit tests, packed-artifact integration (real disk_audit invocation), and a fresh-profile dsh web boot smoke on Windows.

License

MIT © 2026 zoahdev

---

dsh-disk-audit(中文)

DeepSeek Harness(dsh)数据目录的磁盘占用审计:总大小、按目录拆分、最大目录、超大文件与清理建议。

会话日志是追加式的,能悄悄涨到几百 MB(社区甚至见过 ~512 MB 的 stringify 上限)。本插件在你遇到问题前先告诉你空间去哪了。零运行时依赖、只读。

安装

dsh plugin add dsh-disk-audit

独立使用:

npx dsh-disk-audit ~/.dsh

CLI

dsh-disk-audit [dir] [options]

  --json                   输出机器可读 dsh-disk-audit/v1 报告
  --large-file <bytes>     单文件告警阈值(默认 104857600 = 100 MB)
  --skip-node-modules      不进入 node_modules 树
  --help                   帮助

退出码:0 干净,1 有警告(超大文件 / 总量超阈值),2 用法/IO 错误。

npx dsh-disk-audit ~/.dsh
npx dsh-disk-audit ~/.dsh --json --large-file 52428800

在 harness 内使用(agent 可调用)

对 agent 说:

> 看看我的 dsh 数据目录占了多少磁盘,最大的文件是哪些。

工具返回 dsh-disk-audit/v1 报告(结构见英文版 JSON 示例)。

为什么需要它

  • 会话日志追加式增长,能悄悄吃掉几个 GB;没有其他插件按目录报告磁盘占用。
  • 在 500 MB 会话日志撞上 stringify 上限之前发现它,比事后恢复便宜得多。
  • 零运行时依赖、天然只读——永不删除或移动任何东西。

开发

pnpm install
pnpm typecheck
pnpm build
pnpm test
pnpm test:integration

CI 跑 dsh-plugin-doctor 预检、单元测试、打包集成(真实 disk_audit 调用)、Windows 全新 profile 的 dsh web 启动冒烟。

许可证

MIT © 2026 zoahdev

Related ecosystem tools

FAQ

  • How do I install? dsh plugin add dsh-disk-audit or run the CLI directly (see README).
  • Does it need an API key? No.
  • Is it read-only? Yes by default; any write/apply is an explicit flag.

Examples

See the README for full CLI usage. Quick start:

npx dsh-disk-audit --help