sdd-full 5.0.0 → 5.0.1
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/bin.js +4 -5
- package/package.json +1 -1
- package/skills/README.md +3 -3
package/bin.js
CHANGED
|
@@ -6,7 +6,7 @@ const fs = require('fs');
|
|
|
6
6
|
const path = require('path');
|
|
7
7
|
|
|
8
8
|
const SDD = {
|
|
9
|
-
version: '5.0.
|
|
9
|
+
version: '5.0.1',
|
|
10
10
|
name: 'sdd-full',
|
|
11
11
|
description: '完整的软件设计开发技能包'
|
|
12
12
|
};
|
|
@@ -107,10 +107,9 @@ function install(targetDir, environment) {
|
|
|
107
107
|
{ name: '通用 sdd-full', skillsPath: path.join(baseDir, '.sdd-full', 'skills'), rulesPath: path.join(baseDir, '.sdd-full', 'rules') }
|
|
108
108
|
];
|
|
109
109
|
} else {
|
|
110
|
-
// 默认:Trae / Solo
|
|
110
|
+
// 默认:Trae / Solo
|
|
111
111
|
installConfig = [
|
|
112
|
-
{ name: 'Trae / Solo', skillsPath: path.join(baseDir, '.trae', 'skills'), rulesPath: path.join(baseDir, '.trae', 'rules') }
|
|
113
|
-
{ name: 'Trae-cn', skillsPath: path.join(baseDir, '.trae-cn', 'skills'), rulesPath: path.join(baseDir, '.trae-cn', 'rules') }
|
|
112
|
+
{ name: 'Trae / Solo', skillsPath: path.join(baseDir, '.trae', 'skills'), rulesPath: path.join(baseDir, '.trae', 'rules') }
|
|
114
113
|
];
|
|
115
114
|
}
|
|
116
115
|
|
|
@@ -240,7 +239,7 @@ function main() {
|
|
|
240
239
|
console.log(` 版本: ${SDD.version}`);
|
|
241
240
|
console.log('========================================');
|
|
242
241
|
console.log('\n用法:');
|
|
243
|
-
console.log(' npx sdd-full - 安装到 Trae / Solo
|
|
242
|
+
console.log(' npx sdd-full - 安装到 Trae / Solo(默认)');
|
|
244
243
|
console.log(' npx sdd-full cc - 安装到 Claude Code');
|
|
245
244
|
console.log(' npx sdd-full trae-cn - 仅安装到 Trae-cn');
|
|
246
245
|
console.log(' npx sdd-full all - 安装到所有环境(Trae + Trae-cn + Claude Code)');
|
package/package.json
CHANGED
package/skills/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
# SDD Full 技能包
|
|
4
4
|
|
|
5
|
-
**版本**: 5.0.
|
|
5
|
+
**版本**: 5.0.1
|
|
6
6
|
**发布日期**: 2026-05-09
|
|
7
|
-
**更新时间**: 2026-05-09 10:
|
|
7
|
+
**更新时间**: 2026-05-09 10:35:00
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -155,7 +155,7 @@ skills/
|
|
|
155
155
|
## 快速安装
|
|
156
156
|
|
|
157
157
|
```bash
|
|
158
|
-
# 默认安装到 Trae / Solo
|
|
158
|
+
# 默认安装到 Trae / Solo
|
|
159
159
|
npx sdd-full
|
|
160
160
|
|
|
161
161
|
# 安装到 Claude Code
|