openmatrix 0.1.30 → 0.1.31
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 +13 -2
- package/skills/start.md +2 -2
package/package.json
CHANGED
package/skills/brainstorm.md
CHANGED
|
@@ -16,9 +16,20 @@ OpenMatrix 独立运行,使用自己的头脑风暴流程。
|
|
|
16
16
|
<process>
|
|
17
17
|
1. **初始化头脑风暴会话**
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
如果 `$ARGUMENTS` 为空, 先询问用户任务内容:
|
|
20
|
+
```typescript
|
|
21
|
+
AskUserQuestion({
|
|
22
|
+
questions: [{
|
|
23
|
+
question: "请描述你想头脑风暴的任务:",
|
|
24
|
+
header: "任务",
|
|
25
|
+
options: [] // 开放输入
|
|
26
|
+
}]
|
|
27
|
+
})
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
调用 CLI 创建头脑风暴会话(传入任务描述):
|
|
20
31
|
```bash
|
|
21
|
-
openmatrix brainstorm --json
|
|
32
|
+
openmatrix brainstorm "$ARGUMENTS" --json
|
|
22
33
|
```
|
|
23
34
|
|
|
24
35
|
这会返回:
|