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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmatrix",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
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",
@@ -16,9 +16,20 @@ OpenMatrix 独立运行,使用自己的头脑风暴流程。
16
16
  <process>
17
17
  1. **初始化头脑风暴会话**
18
18
 
19
- 调用 CLI 创建头脑风暴会话:
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
  这会返回:
package/skills/start.md CHANGED
@@ -131,9 +131,9 @@ AskUserQuestion({
131
131
 
132
132
  ## Step 3: 展示执行计划 + 执行模式
133
133
 
134
- **调用 CLI 拆解任务:**
134
+ **调用 CLI 拆解任务(传入任务描述):**
135
135
  ```bash
136
- openmatrix plan --json
136
+ openmatrix plan "$ARGUMENTS" --json
137
137
  ```
138
138
 
139
139
  **展示执行计划:**