sdd-skills 1.3.1 → 1.3.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/install.js CHANGED
@@ -177,7 +177,7 @@ function installSkills(targetDir) {
177
177
  // Get list of skills
178
178
  const skills = [
179
179
  'sae',
180
- 'developer',
180
+ 'ade',
181
181
  'tester',
182
182
  'code-reviewer',
183
183
  'git-engineer',
@@ -241,7 +241,7 @@ function displaySummary(location) {
241
241
  console.log(chalk.bold.green('\n✨ Installation Complete!\n'));
242
242
  console.log(chalk.bold('📋 Summary:\n'));
243
243
  console.log(` ${chalk.gray('Location:')} ${chalk.cyan(skillsPath)}`);
244
- console.log(` ${chalk.gray('Skills:')} ${chalk.cyan('6')} (SAE, Developer, Tester, Reviewer, Git, Notifier)`);
244
+ console.log(` ${chalk.gray('Skills:')} ${chalk.cyan('6')} (SAE, ADE, Tester, Reviewer, Git, Notifier)`);
245
245
 
246
246
  console.log(chalk.bold('\n🚀 Getting Started:\n'));
247
247
  console.log(' 1. Open Claude Code');
@@ -274,7 +274,7 @@ async function install() {
274
274
  console.log(chalk.bold('\n📋 Installation Summary:\n'));
275
275
  console.log(` ${chalk.gray('Location:')} ${chalk.cyan(answers.location === 'global' ? 'Global' : 'Local (Current Project)')}`);
276
276
  console.log(` ${chalk.gray('Install to:')} ${chalk.cyan(targetDir)}`);
277
- console.log(` ${chalk.gray('Skills:')} ${chalk.cyan('6')} (SAE, Developer, Tester, Reviewer, Git, Notifier)`);
277
+ console.log(` ${chalk.gray('Skills:')} ${chalk.cyan('6')} (SAE, ADE, Tester, Reviewer, Git, Notifier)`);
278
278
  if (answers.configureDingTalk) {
279
279
  console.log(` ${chalk.gray('DingTalk:')} ${chalk.cyan('Enabled')}`);
280
280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdd-skills",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Spec-Driven Development Skills for Claude Code - SAE/ADE workflow automation",
5
5
  "type": "module",
6
6
  "main": "install.js",
@@ -97,8 +97,7 @@ description: 软件架构工程师,负责需求分析、架构设计和技术
97
97
  3. [具体实现步骤 1];
98
98
  4. [具体实现步骤 2];
99
99
  5. [具体实现步骤 N];
100
- 6. 运行测试验证功能正确性;
101
- 7. 提交代码并创建 MR。
100
+ 6. 运行测试验证功能正确性。
102
101
  ```
103
102
 
104
103
  #### 示例:用户登录 Spec
@@ -169,8 +168,7 @@ Response (401):
169
168
  7. 实现前端登录页面:创建 LoginView.vue 和 LoginForm 组件;
170
169
  8. 实现前端状态管理:创建 authStore.ts 管理登录状态;
171
170
  9. 编写前端组件测试,确保覆盖率 >= 90%;
172
- 10. 运行全量测试验证功能正确性;
173
- 11. 提交代码并创建 MR。
171
+ 10. 运行全量测试验证功能正确性。
174
172
  ```
175
173
 
176
174
  ## 输出工件
@@ -337,8 +335,7 @@ SAE 是工作流的**起点**,完成需求分析后:
337
335
  6. 实现前端登录页面;
338
336
  7. 实现前端状态管理;
339
337
  8. 编写前端组件测试;
340
- 9. 运行全量测试验证;
341
- 10. 提交代码并创建 MR。
338
+ 9. 运行全量测试验证。
342
339
  ---
343
340
 
344
341
  Spec 文档已生成,请确认后可调用 `/ade` 开始开发。