dsh-repo-setup 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +2 -0
- package/README.md +7 -0
- package/dsh.plugin.json +15 -0
- package/lib/index.js +2 -0
- package/package.json +10 -1
package/README.en.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/dsh-repo-setup)
|
|
4
4
|
[](https://github.com/gongyijie85/dsh-repo-setup/releases)
|
|
5
5
|
[](LICENSE)
|
|
6
|
+
[](https://github.com/gongyijie85/dsh-repo-setup)
|
|
7
|
+
[]() []() []() []()
|
|
6
8
|
|
|
7
9
|
Repo bootstrap guidance for the **DeepSeek Harness (DSH)** — the counterpart of
|
|
8
10
|
Anthropic's **claude-code-setup**.
|
package/README.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/dsh-repo-setup)
|
|
4
4
|
[](https://github.com/gongyijie85/dsh-repo-setup/releases)
|
|
5
|
+
[](https://github.com/gongyijie85/dsh-repo-setup/actions/workflows/ci.yml)
|
|
5
6
|
[](LICENSE)
|
|
7
|
+
[](https://github.com/gongyijie85/dsh-repo-setup)
|
|
8
|
+
[]() []() []() []()
|
|
6
9
|
|
|
7
10
|
<div align="center">
|
|
8
11
|
|
|
@@ -18,6 +21,8 @@
|
|
|
18
21
|
|
|
19
22
|
## 安装
|
|
20
23
|
|
|
24
|
+
**支持的 DSH 版本**:`>=0.1.1-rc.2`(已在上线版本验证,兼容更高版本)。
|
|
25
|
+
|
|
21
26
|
```sh
|
|
22
27
|
# npm
|
|
23
28
|
dsh plugin --profile web add dsh-repo-setup
|
|
@@ -45,8 +50,10 @@ dsh plugin --profile web add D:\plugins\dsh-repo-setup
|
|
|
45
50
|
- **Repo hygiene** — AGENTS.md 缺失、git 未初始化、无测试、数据库线索
|
|
46
51
|
- **Recommended installs** — 一键命令:
|
|
47
52
|
- `mattpocock-skills-dsh`(grilling/to-spec/to-tickets/tdd/code-review 工作流)
|
|
53
|
+
- `mattpocock-skills-dsh-zh`(中文技能版,与英文版二选一)
|
|
48
54
|
- `superpowers-dsh`(规划→TDD→评审方法论)
|
|
49
55
|
- `dsh-ponytail-skills`(防过度工程)
|
|
56
|
+
- `dsh-ecc-skills`(ECC 273 技能:模式/编排/垂直领域)
|
|
50
57
|
- `dsh-claude-mem`(可选:跨会话记忆)
|
|
51
58
|
- `dsh-mcp-manager`(挂载下方 MCP 用)
|
|
52
59
|
- MCP:context7(库文档)、playwright(前端)、postgres、github(按检测结果)
|
package/dsh.plugin.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "gongyijie85/dsh-repo-setup",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"main": "./lib/index.js",
|
|
5
|
+
"description": "Repo bootstrap guidance for DeepSeek Harness: read-only repo_setup_scan tool that detects stack/tests/docs/git/db and recommends skill plugins, MCP servers and hygiene files to install (claude-code-setup counterpart)",
|
|
6
|
+
"engines": {
|
|
7
|
+
"dsh": ">=0.1.1-rc.2"
|
|
8
|
+
},
|
|
9
|
+
"contributes": {
|
|
10
|
+
"tools": [
|
|
11
|
+
"repo_setup_scan"
|
|
12
|
+
],
|
|
13
|
+
"skills": []
|
|
14
|
+
}
|
|
15
|
+
}
|
package/lib/index.js
CHANGED
|
@@ -141,6 +141,8 @@ async function scanRepo(root) {
|
|
|
141
141
|
lines.push(`- \`dsh plugin --profile web add mattpocock-skills-dsh\``)
|
|
142
142
|
lines.push(`- \`dsh plugin --profile web add superpowers-dsh\``)
|
|
143
143
|
lines.push(`- \`dsh plugin --profile web add dsh-ponytail-skills\``)
|
|
144
|
+
lines.push(`- \`dsh plugin --profile web add dsh-ecc-skills\` (ECC skills, 273 curated)`)
|
|
145
|
+
lines.push(`- \`dsh plugin --profile web add mattpocock-skills-dsh-zh\` (中文技能版,二选一 with the English pack)`)
|
|
144
146
|
lines.push(`- \`dsh plugin --profile web add github:Bleed00/dsh-claude-mem\` (optional: cross-session memory)`)
|
|
145
147
|
lines.push(`- \`dsh plugin --profile web add github:Nichts0v0/dsh-mcp-manager\` (to mount the MCP servers below)`)
|
|
146
148
|
if (stacks.some((s) => s.includes('Node') || s.includes('Rust') || s.includes('Python') || s.includes('Go'))) {
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-repo-setup",
|
|
3
3
|
"description": "Repo bootstrap guidance for DeepSeek Harness: read-only repo_setup_scan tool that detects stack/tests/docs/git/db and recommends skill plugins, MCP servers and hygiene files to install (claude-code-setup counterpart)",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
|
+
"engines": {
|
|
8
|
+
"dsh": ">=0.1.1-rc.2"
|
|
9
|
+
},
|
|
7
10
|
"main": "lib/index.js",
|
|
8
11
|
"exports": {
|
|
9
12
|
".": "./lib/index.js",
|
|
@@ -11,6 +14,7 @@
|
|
|
11
14
|
},
|
|
12
15
|
"files": [
|
|
13
16
|
"lib",
|
|
17
|
+
"dsh.plugin.json",
|
|
14
18
|
"cordis.patch.yml",
|
|
15
19
|
"README.md",
|
|
16
20
|
"README.en.md",
|
|
@@ -45,6 +49,11 @@
|
|
|
45
49
|
"dsh": {
|
|
46
50
|
"bundle": {
|
|
47
51
|
"patch": "./cordis.patch.yml"
|
|
52
|
+
},
|
|
53
|
+
"compatibility": {
|
|
54
|
+
"dshReleases": {
|
|
55
|
+
"0.1.1-rc.2": "compatible"
|
|
56
|
+
}
|
|
48
57
|
}
|
|
49
58
|
}
|
|
50
59
|
}
|