
LeslieWylie/dsh-ops-kit
30最近提交 2026年8月14日
dsh-ops-kit DSH 插件
dsh-ops-kit 为 DSH 代理提供五个保守的技能包:有界记忆搜索、基于证据的工作流规划、代理循环协调、基准结果门控和插件发布卫生。所有工具默认只读,不会静默创建问题、调用远程 API、修改仓库或读取凭据。
如何安装 dsh-ops-kit DSH 插件
dsh plugin --profile <profile> add github:LeslieWylie/dsh-ops-kit来源命令需要人工核对。复制不会执行命令。
dsh-ops-kit DSH 插件数据来源
dsh-ops-kit DSH 插件快照日期:2026年8月16日
discovered
dsh-ops-kit DSH 插件能做什么
- 在配置的本地 Markdown/代码根目录中搜索先前上下文,并附带来源
- 生成范围→基线→工作→审查→交接计划,用于多代理或基准测试
- 审计 Git 清洁度、未跟踪文件和凭据路径卫生
- 生成完整的 DSH 插件发布检查清单,带有证据门控
- 通过目录工具列出所有包含的技能包
- 读取打包的完整技能定义
dsh-ops-kit DSH 插件适合哪些场景
- 在代理声明记忆之前,搜索配置的本地根目录以获取相关上下文
- 在多代理编排中,验证计划有证据支持后再执行
- 在发布前审计仓库清洁度和凭据安全性
- 使用预检查和工件完整性门控基准测试结果
- 生成包含所有必要步骤和证据的发布检查清单
dsh-ops-kit DSH 插件适合谁
- 需要强制代理基于证据行为的 DSH 插件开发者
- 运行需要协调和审计轨迹的多代理工作流的团队
dsh-ops-kit DSH 插件的限制
- 所有工具只读,修改操作必须在外部执行
- 需要显式配置本地根目录以进行记忆搜索和仓库审计
- 包不在 npm 注册表上,必须直接从 GitHub 安装
- 无远程 API 调用,所有操作限于 DSH 进程工作目录
dsh-ops-kit DSH 插件的仓库 README 摘录
以下文字摘自 dsh-ops-kit DSH 插件的上游仓库 LeslieWylie/dsh-ops-kit 的 README,版权归原作者,仅作引用。
**Five read-only skills that make an agent show its evidence — before it claims memory, a finished plan, a clean benchmark, or a safe release.** ## Why this exists Agents are persuasive even when they are wrong. This bundle is built around one rule: before an agent says "I remember this," "the plan is ready," "the benchmark passed," or "the release is safe," it should be able to point at evidence for the claim instead of just asserting it. Five focused skill packs share that discipline — bounded memory search, evidence-based orchestration planning, agent-loop coordination rules, benchmark-result gating, and plugin release hygiene — instead of shipping the same idea as five separate packages that each need their own install and their own place in a plugin index. Everything here is conservative by default: nothing silently creates issues, calls a remote API, starts a benchmark, mutates a repository, or reads credentials. The bundle gives an agent plans, checks, and evidence vocabulary; anything with a side effect stays an explicit, reviewable action taken outside the bundle. ## Install The package is not on the npm registry yet, so install it straight from GitHub. Add it to a DS
阅读完整 README仓库许可: MIT
dsh-ops-kit DSH 插件常见问题
如何安装 dsh-ops-kit?
dsh-ops-kit 不在 npm 注册表中,需要从 GitHub 安装。在 DSH 配置文件的 package.json 中添加依赖:`"@dsh-community/dsh-ops-kit": "github:LeslieWylie/dsh-ops-kit"`,然后重新安装依赖并重启配置。或者使用 CLI 命令:`dsh plugin --profile <profile> add github:LeslieWylie/dsh-ops-kit`。
这些工具有副作用吗?
没有,dsh-ops-kit 中的所有工具都是只读的。它们不会创建问题、调用远程 API、启动基准测试、修改仓库或读取凭据。任何有副作用的操作都必须在该包外部显式执行。
记忆搜索和仓库审计工具是什么?
它们是 `dsh_ops_memory_search` 和 `dsh_ops_repository_audit`。两者都需要在插件配置中设置本地 `roots`。`memory_search` 在限定的本地 Markdown 和代码目录中搜索先前上下文。`repository_audit` 检查 Git 清洁度、未跟踪文件和凭据路径卫生。两者都是只读的。
没有 DSH 可以使用 dsh-ops-kit 吗?
不行,dsh-ops-kit 是专门为 DSH 设计的插件。必须安装到 DSH 配置文件中,并在 DSH 框架内运行。它不是独立的 CLI 工具。
什么是“基于证据的编排”技能?
它是 `dsh_ops_workflow_plan` 工具。它生成一个结构化的计划(范围→基线→工作→审查→交接),用于研究、多代理、基准测试或发布工作。该计划旨在确保代理在提出声明前展示证据。