openmatrix 0.1.71 → 0.1.72

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,55 +1,55 @@
1
- {
2
- "name": "openmatrix",
3
- "version": "0.1.71",
4
- "description": "AI Agent task orchestration system with Claude Code Skills integration",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "bin": {
8
- "openmatrix": "dist/cli/index.js"
9
- },
10
- "files": [
11
- "dist",
12
- "skills",
13
- "scripts",
14
- "README.md"
15
- ],
16
- "scripts": {
17
- "build": "tsc",
18
- "dev": "tsx src/cli/index.ts",
19
- "test": "vitest",
20
- "postinstall": "node scripts/install-skills.js"
21
- },
22
- "keywords": [
23
- "claude",
24
- "claude-code",
25
- "ai-agent",
26
- "task-orchestration",
27
- "automation",
28
- "multi-agent"
29
- ],
30
- "author": "",
31
- "license": "MIT",
32
- "type": "commonjs",
33
- "repository": {
34
- "type": "git",
35
- "url": "git+https://github.com/bigfish1913/openmatrix.git"
36
- },
37
- "homepage": "https://github.com/bigfish1913/openmatrix#readme",
38
- "bugs": {
39
- "url": "https://github.com/bigfish1913/openmatrix/issues"
40
- },
41
- "dependencies": {
42
- "@types/node": "^22.0.0",
43
- "chalk": "^5.6.2",
44
- "chokidar": "^5.0.0",
45
- "commander": "^14.0.3",
46
- "typescript": "^5.3.3",
47
- "winston": "^3.19.0"
48
- },
49
- "devDependencies": {
50
- "vitest": "^1.6.0"
51
- },
52
- "engines": {
53
- "node": ">=18.0.0"
54
- }
55
- }
1
+ {
2
+ "name": "openmatrix",
3
+ "version": "0.1.72",
4
+ "description": "AI Agent task orchestration system with Claude Code Skills integration",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "openmatrix": "dist/cli/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "skills",
13
+ "scripts",
14
+ "README.md"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsc",
18
+ "dev": "tsx src/cli/index.ts",
19
+ "test": "vitest",
20
+ "postinstall": "node scripts/install-skills.js"
21
+ },
22
+ "keywords": [
23
+ "claude",
24
+ "claude-code",
25
+ "ai-agent",
26
+ "task-orchestration",
27
+ "automation",
28
+ "multi-agent"
29
+ ],
30
+ "author": "",
31
+ "license": "MIT",
32
+ "type": "commonjs",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/bigfish1913/openmatrix.git"
36
+ },
37
+ "homepage": "https://github.com/bigfish1913/openmatrix#readme",
38
+ "bugs": {
39
+ "url": "https://github.com/bigfish1913/openmatrix/issues"
40
+ },
41
+ "dependencies": {
42
+ "@types/node": "^22.0.0",
43
+ "chalk": "^5.6.2",
44
+ "chokidar": "^5.0.0",
45
+ "commander": "^14.0.3",
46
+ "typescript": "^5.3.3",
47
+ "winston": "^3.19.0"
48
+ },
49
+ "devDependencies": {
50
+ "vitest": "^1.6.0"
51
+ },
52
+ "engines": {
53
+ "node": ">=18.0.0"
54
+ }
55
+ }
@@ -35,7 +35,7 @@ OpenMatrix 独立运行,不依赖外部任务编排系统。
35
35
  "questions": [...],
36
36
  "suggestResearch": "游戏开发",
37
37
  "researchHint": "检测到垂直领域「游戏开发」,建议先进行领域调研",
38
- "hint": "请逐一回答问题,完成后再调用 --complete"
38
+ "hint": "请逐一回答问题,完成后写入 tasks-input.json 并调用 /om:start"
39
39
  }
40
40
  ```
41
41
 
package/skills/start.md CHANGED
@@ -307,11 +307,11 @@ openmatrix step --json
307
307
 
308
308
  **交互式审批流程(非全自动模式):**
309
309
 
310
- 当到达审批点时,使用 `openmatrix approve --list` 查看待审批项,然后通过 AskUserQuestion 请求用户确认:
310
+ 当到达审批点时,使用 `openmatrix approve --json`(不带 ID)查看待审批项,然后通过 AskUserQuestion 请求用户确认:
311
311
 
312
312
  ```typescript
313
313
  // 检查是否有待审批项
314
- // 通过 CLI: openmatrix approve --list --json
314
+ // 通过 CLI: openmatrix approve --json (不带 approvalId 时返回列表)
315
315
 
316
316
  AskUserQuestion({
317
317
  questions: [
@@ -334,8 +334,9 @@ AskUserQuestion({
334
334
  ```
335
335
 
336
336
  用户选择后,执行对应命令:
337
- - 批准: `openmatrix approve <approval-id> --approve`
338
- - 拒绝: `openmatrix approve <approval-id> --reject`
337
+ - 批准: `openmatrix approve <approval-id> -d approve --json`
338
+ - 拒绝: `openmatrix approve <approval-id> -d reject --json`
339
+ - 修改: `openmatrix approve <approval-id> -d modify -c "修改建议" --json`
339
340
  - 查看详情: 读取 `.openmatrix/approvals/<approval-id>.json` 并展示完整内容
340
341
 
341
342