sdd-full 1.4.0 → 1.4.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/index.js +5 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const path = require('path');
|
|
|
8
8
|
|
|
9
9
|
// 技能包的主入口
|
|
10
10
|
const SDD = {
|
|
11
|
-
version: '1.4.
|
|
11
|
+
version: '1.4.1',
|
|
12
12
|
name: 'sdd-full',
|
|
13
13
|
description: '完整的软件设计开发技能包',
|
|
14
14
|
|
|
@@ -89,14 +89,14 @@ const SDD = {
|
|
|
89
89
|
];
|
|
90
90
|
} else if (environment === 'all') {
|
|
91
91
|
dirsToInstall = [
|
|
92
|
-
{ name: 'Trae
|
|
92
|
+
{ name: 'Trae / Solo', path: path.join(baseDir, '.trae', 'skills') },
|
|
93
93
|
{ name: 'Claude Code', path: path.join(baseDir, '.claude', 'skills') },
|
|
94
94
|
{ name: '通用 sdd-full', path: path.join(baseDir, '.sdd-full', 'skills') }
|
|
95
95
|
];
|
|
96
96
|
} else {
|
|
97
|
-
// 默认:Trae
|
|
97
|
+
// 默认:Trae / Solo
|
|
98
98
|
dirsToInstall = [
|
|
99
|
-
{ name: 'Trae
|
|
99
|
+
{ name: 'Trae / Solo', path: path.join(baseDir, '.trae', 'skills') }
|
|
100
100
|
];
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -174,7 +174,7 @@ if (require.main === module) {
|
|
|
174
174
|
console.log(` 版本: ${SDD.version}`);
|
|
175
175
|
console.log('========================================');
|
|
176
176
|
console.log('\n用法:');
|
|
177
|
-
console.log(' npx sdd-full - 安装到 Trae
|
|
177
|
+
console.log(' npx sdd-full - 安装到 Trae / Solo(默认)');
|
|
178
178
|
console.log(' npx sdd-full cc - 安装到 Claude Code');
|
|
179
179
|
console.log(' npx sdd-full all - 安装到所有环境');
|
|
180
180
|
console.log(' npx sdd-full --help - 显示帮助');
|