openmatrix 0.1.8 → 0.1.9

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.8",
3
+ "version": "0.1.9",
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",
package/skills/auto.md CHANGED
@@ -7,6 +7,21 @@ description: 全自动执行任务 - 无阻塞,bypass permissions
7
7
  执行此技能时,不得调用 superpowers、gsd 或其他任务编排相关的技能。OpenMatrix 独立运行,不依赖外部任务编排系统。
8
8
  </NO-OTHER-SKILLS>
9
9
 
10
+ <BYPASS-MODE>
11
+ ## ⚠️ 全自动模式 - 自动批准所有操作
12
+
13
+ 此模式要求 **BYPASS 所有权限检查**:
14
+
15
+ 1. **所有 Bash 命令自动批准** - 不询问确认
16
+ 2. **所有文件操作自动批准** - 不询问确认
17
+ 3. **所有 Agent 调用自动批准** - 不询问确认
18
+ 4. **所有审批点自动批准** - plan/merge/deploy 自动通过
19
+
20
+ **执行时不要请求用户确认任何操作。**
21
+
22
+ 如果 Claude Code 询问权限,说明权限模式未正确设置,请告知用户检查 Claude Code 设置。
23
+ </BYPASS-MODE>
24
+
10
25
  <objective>
11
26
  全自动执行任务,跳过所有交互式问答和审批点,直接完成。支持 --quality 参数指定质量级别(默认 strict)。
12
27
  </objective>
@@ -7,6 +7,19 @@ description: "Use this for ANY development task - especially complex multi-step
7
7
  Automatically detect when user wants to accomplish a development task and invoke /om:start without requiring explicit command.
8
8
  </objective>
9
9
 
10
+ <note>
11
+ ## After Auto-Invoke
12
+
13
+ When `/om:start` is invoked, user will be asked to select:
14
+ 1. **Quality level** (strict/balanced/fast)
15
+ 2. **Execution mode** (每阶段确认/关键节点确认/全自动执行)
16
+
17
+ **If user selects "全自动执行" (fully automatic)**:
18
+ - All operations will be automatically approved (BYPASS mode)
19
+ - No permission confirmations needed
20
+ - Task will complete without interruption
21
+ </note>
22
+
10
23
  <trigger-conditions>
11
24
  ## When to Auto-Invoke /om:start
12
25
 
package/skills/start.md CHANGED
@@ -190,6 +190,11 @@ AskUserQuestion({
190
190
  })
191
191
  ```
192
192
 
193
+ **⚠️ 如果用户选择"全自动执行":**
194
+ - 进入 **BYPASS 模式**,所有操作自动批准
195
+ - 不要请求用户确认任何 Bash 命令或文件操作
196
+ - 自动批准所有审批点 (plan/merge/deploy)
197
+
193
198
  8. **开始执行** (⚠️ 严格模式)
194
199
 
195
200
  **重要**: 从此步骤开始,除非遇到 meeting 审批或失败,否则**不得暂停询问用户**。