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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmatrix",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
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",
@@ -141,8 +141,21 @@ OpenMatrix 独立运行,使用自己的头脑风暴流程。
141
141
  ```bash
142
142
  openmatrix brainstorm --complete --json
143
143
  ```
144
- - 自动调用 `/om:start` 开始执行任务
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