speccore 5.67.57 → 5.67.58

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.
@@ -37,9 +37,9 @@ disable-model-invocation: false
37
37
  [自动模式] 将自动执行 step 1-2 (analyze+plan),step 3 (execute) 前暂停确认。
38
38
  [全程确认] 每步展示结果再继续。
39
39
 
40
- step 1: speccore analyze --prompt -I meeting-system --task user-login
41
- step 2: speccore plan --prompt -I meeting-system --task user-login
42
- step 3: speccore execute --prompt -I meeting-system --task user-login
40
+ step 1: 🔒 AI命令: speccore analyze --prompt -I meeting-system --task user-login
41
+ step 2: 🔒 AI命令: speccore plan --prompt -I meeting-system --task user-login
42
+ step 3: 🔒 AI命令: speccore execute --prompt -I meeting-system --task user-login
43
43
 
44
44
  是否确认?
45
45
  """
@@ -52,19 +52,19 @@ disable-model-invocation: false
52
52
 
53
53
  ## 关键命令
54
54
 
55
- | 命令 | 格式 | 需要 AI |
56
- |:---|:---|:---:|
57
- | `analyze --prompt -I <短名> --task <短名>` | 分析任务 | |
58
- | `plan --prompt -I <短名> --task <短名>` | 制定计划 | |
59
- | `execute --prompt -I <短名> --task <短名>` | 执行开发 | |
60
- | `context --set --iteration <完整名>` | 切换迭代 | |
61
- | `dashboard` | 查看进度 | |
62
- | `iteration split -i <短名>` | 拆分任务 | |
63
- | `task new -n <名> --topic <英文> -i <短名>` | 创建任务 | |
55
+ | 命令 | 格式 | 类型 | 说明 |
56
+ |:---|:---|:---|:---|
57
+ | `analyze --prompt -I <短名> --task <短名>` | 分析任务 | 🔒 AI | 需要宿主 AI 交互,`speccore ask "分析..."` 路由进入 |
58
+ | `plan --prompt -I <短名> --task <短名>` | 制定计划 | 🔒 AI | 需要宿主 AI 交互,`speccore ask "制定计划..."` 路由进入 |
59
+ | `execute --prompt -I <短名> --task <短名>` | 执行开发 | 🔒 AI | 需要宿主 AI 交互,`speccore ask "执行开发..."` 路由进入 |
60
+ | `iteration split -I <短名>` | 拆分任务 | 🔒 AI | 需要宿主 AI 交互,`speccore ask "拆分任务..."` 路由进入 |
61
+ | `context --set --iteration <完整名>` | 切换迭代 | CLI | 可在终端直接输入 |
62
+ | `dashboard` | 查看进度 | CLI | 可在终端直接输入 |
63
+ | `task new -n <名> --topic <英文> -i <短名>` | 创建任务 | CLI | 可在终端直接输入 |
64
64
 
65
65
  ## AI 分析质量要求
66
66
 
67
- 执行 analyze --prompt 后:
67
+ 执行 analyze --prompt(🔒 AI命令)后:
68
68
  1. **Read 迭代目录下所有源码文件**(REQUIREMENT.md、010-requirements/sources/ 下的文档)
69
69
  2. **分析报告必须包含 7 个文档**(不同任务类型不同集合):
70
70
 
@@ -100,7 +100,7 @@ allowed-tools: ["Bash", "Read", "Write", "Edit"]
100
100
  | 导出全部 Spec | iter? | `speccore spec2doc -i {iter} --all -o {name}.docx` |
101
101
 
102
102
  ### 需求分析
103
- | 用户说法 | 提取参数 | CLI 命令 |
103
+ | 用户说法 | 提取参数 | AI 上下文(需宿主AI交互) |
104
104
  | :--- | :--- | :--- |
105
105
  | 分析需求/检查需求 | iter?, task? | `speccore analyze -I {iter}` |
106
106
  | 分析 {iter} 的需求 | iter | `speccore analyze -I {iter}` |
@@ -109,7 +109,7 @@ allowed-tools: ["Bash", "Read", "Write", "Edit"]
109
109
  | 评审需求 | iter? | `speccore analyze -I {iter}` |
110
110
 
111
111
  ### 任务拆分
112
- | 用户说法 | 提取参数 | CLI 命令 |
112
+ | 用户说法 | 提取参数 | AI 上下文(需宿主AI交互) |
113
113
  | :--- | :--- | :--- |
114
114
  | 拆分任务/拆解需求 | iter, owner? | `speccore iteration split -I {iter}` |
115
115
  | 分配任务 | iter, owner? | `speccore iteration split -I {iter} --owner {owner}` |
@@ -117,7 +117,7 @@ allowed-tools: ["Bash", "Read", "Write", "Edit"]
117
117
  | 生成任务列表 | iter | `speccore iteration split -I {iter}` |
118
118
 
119
119
  ### 执行开发
120
- | 用户说法 | 提取参数 | CLI 命令 |
120
+ | 用户说法 | 提取参数 | AI 上下文(需宿主AI交互) |
121
121
  | :--- | :--- | :--- |
122
122
  | 执行 {task}/开发 {task} | task | `speccore execute -t {task} --force` |
123
123
  | 执行全部/全部开发 | - | `speccore execute --all --force` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speccore",
3
- "version": "5.67.57",
3
+ "version": "5.67.58",
4
4
  "description": "SpecCore - Code by Spec, Not by Vibe.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",