openmatrix 0.1.96 → 0.1.97

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skills/start.md +9 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmatrix",
3
- "version": "0.1.96",
3
+ "version": "0.1.97",
4
4
  "description": "AI Agent task orchestration system with Claude Code Skills integration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/skills/start.md CHANGED
@@ -137,13 +137,19 @@ git init
137
137
  | 任务类型 | 需要询问的问题 |
138
138
  |---------|---------------|
139
139
  | **开发任务**(新功能、Bug修复、重构) | 4.1 质量等级 + 4.2 E2E + 4.3 执行模式 |
140
+ | **测试任务**(纯测试、写测试用例) | 仅 4.3 执行模式 |
140
141
  | **非开发任务**(文档、配置、纯阅读) | 仅 4.3 执行模式 |
141
142
 
143
+ **判断依据:** 查看 Step 6 生成的 `tasks-input.json` 中的 `goalTypes` 字段:
144
+ - `development` → 开发任务 → 问 4.1 + 4.2 + 4.3
145
+ - `testing` → 测试任务 → 仅问 4.3
146
+ - `documentation` / `other` → 非开发任务 → 仅问 4.3
147
+
142
148
  **⚠️ 以下问题不可跳过,不可使用默认值:**
143
149
 
144
- #### 4.1 质量等级(仅开发任务)
150
+ #### 4.1 质量等级(仅开发任务,测试/文档任务跳过)
145
151
 
146
- 如果是代码开发任务(包含编码、测试、Lint等),必须询问:
152
+ 如果是代码开发任务(`goalTypes` 包含 `development`),必须询问:
147
153
 
148
154
  ```typescript
149
155
  AskUserQuestion({
@@ -162,7 +168,7 @@ AskUserQuestion({
162
168
  })
163
169
  ```
164
170
 
165
- #### 4.2 E2E 测试(开发任务且选 strict/balanced 时)
171
+ #### 4.2 E2E 测试(仅开发任务且选 strict/balanced 时)
166
172
 
167
173
  如果开发任务且用户选择了 `strict` 或 `balanced`,继续询问:
168
174