openmatrix 0.1.32 → 0.1.33
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/package.json +1 -1
- package/skills/brainstorm.md +14 -1
package/package.json
CHANGED
package/skills/brainstorm.md
CHANGED
|
@@ -141,8 +141,21 @@ OpenMatrix 独立运行,使用自己的头脑风暴流程。
|
|
|
141
141
|
```bash
|
|
142
142
|
openmatrix brainstorm --complete --json
|
|
143
143
|
```
|
|
144
|
-
-
|
|
144
|
+
- **必须使用 Skill 工具调用 om:start**:
|
|
145
|
+
```typescript
|
|
146
|
+
Skill({
|
|
147
|
+
skill: "om:start",
|
|
148
|
+
args: JSON.stringify({
|
|
149
|
+
taskInput: session.taskInput,
|
|
150
|
+
taskTitle: session.taskTitle,
|
|
151
|
+
answers: session.answers,
|
|
152
|
+
insights: session.insights,
|
|
153
|
+
designNotes: session.designNotes
|
|
154
|
+
})
|
|
155
|
+
})
|
|
156
|
+
```
|
|
145
157
|
- 将头脑风暴收集的洞察传递给 start
|
|
158
|
+
- **不要直接执行任务**,必须通过 `/om:start` 启动
|
|
146
159
|
|
|
147
160
|
</process>
|
|
148
161
|
|