精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
Repo bootstrap guidance for DeepSeek Harness: read-only repo_setup_scan tool — claude-code-setup counterpart
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
Repo bootstrap guidance for DeepSeek Harness: read-only repo_setup_scan tool — claude-code-setup counterpart
待人工精选——以下事实来自源码仓库。
Repo bootstrap guidance for DeepSeek Harness: read-only repo_setup_scan tool — claude-code-setup counterpart
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:gongyijie85/dsh-repo-setup 作者没有声明支持的平台。
repo_setup_scan:扫描项目目录的语言栈、测试设置、 文档、git、Docker 与数据库线索,然后给出设置建议:该装哪些 DSH 技能插件、 该挂哪些 MCP 服务器、该补哪些卫生文件。绝不修改任何东西。 ## 安装 sh # npm dsh plugin --profile web add dsh-repo-setup # GitHub dsh plugin --profile web add github:gongyijie85/dsh-repo-setup # 本地开发 dsh plugin --profile web add D:\plugins\dsh-repo-setup 装完重启 profile(dsh web),模型会在进入新/陌生仓库时自动调用 repo_setup_scan(也可在对话里直接要求"扫描这个仓库怎么配置")。 ## 工具:repo_setup_scan | 参数 | 说明 | | --- | --- | | path | 要扫描的项目目录;缺省为当前工作目录 | 输出 Markdown 报告: - Detected stack — package.json / pyproject.toml / Cargo.toml / go.mod / Dockerfile 等标记识别的技术栈(含前端框架与测试运行器探测) - Repo hygiene — AGENTS.md 缺失、git 未初始化、无测试、数据库线索 - Recommended installs — 一键命令: - mattpocock-skills-dsh(grilling/to-spec/to-tickets/tdd/code-review 工作流) - mattpocock-skills-dsh-zh(中文技能版,与英文版二选一) - superpowers-dsh(规划→TDD→评审方法论) - dsh-ponytail-skills(防过度工程) - dsh-ecc-skills(ECC 273 技能:模式/编排/垂直领域) - dsh-claude-mem(可选:跨会话记忆) - dsh-mcp-manager(挂载下方 MCP 用) - MCP:context7(库文档)、playwright(前端)、postgres、github(按检测结果) ## 工作原理 - Bundle 层 —— cordis.patch.yml 在 dsh-base 层插入插件行。 - 工具 —— lib/index.js 用 @deepseek-ai/dsh-tools 的 defineTool 注册 repo_setup_scan,只读探测(读有限个已知文件 + 顶层目录列表),不做任何写入。 - 零运行时依赖 —— 除 harness 注入的 @deepseek-ai/dsh-tools peer 依赖外 只用 Node 内置模块。 ## 开发验证 sh node --check lib/index.js # 功能冒烟(伪 ctx 注册 + 直接调 scanRepo 逻辑见 scripts/verify-tool.mjs) node scripts/verify-tool.mjs ## 许可证 MIT。见 LICENSE。不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。