openmatrix 0.1.10 → 0.1.12

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.
@@ -65,8 +65,8 @@ exports.installSkillsCommand = new commander_1.Command('install-skills')
65
65
  console.error(' Error:', err.message);
66
66
  process.exit(1);
67
67
  }
68
- // Get skill files (excluding om.md and openmatrix-auto.md which are handled separately)
69
- const files = fs.readdirSync(skillsDir).filter(f => f.endsWith('.md') && f !== 'om.md' && f !== 'openmatrix-auto.md');
68
+ // Get skill files (excluding om.md and openmatrix.md which are handled separately)
69
+ const files = fs.readdirSync(skillsDir).filter(f => f.endsWith('.md') && f !== 'om.md' && f !== 'openmatrix.md');
70
70
  if (files.length === 0) {
71
71
  console.error('❌ No skill files found in:', skillsDir);
72
72
  process.exit(1);
@@ -117,22 +117,22 @@ exports.installSkillsCommand = new commander_1.Command('install-skills')
117
117
  }
118
118
  }
119
119
  // Install auto-detection instructions
120
- const autoSrc = path.join(skillsDir, 'openmatrix-auto.md');
121
- const autoDest = path.join(claudeDir, 'commands', 'openmatrix-auto.md');
120
+ const autoSrc = path.join(skillsDir, 'openmatrix.md');
121
+ const autoDest = path.join(claudeDir, 'commands', 'openmatrix.md');
122
122
  if (fs.existsSync(autoSrc)) {
123
123
  try {
124
124
  if (fs.existsSync(autoDest) && !options.force) {
125
- console.log(` ⏭️ Skipped: openmatrix-auto.md (already exists)`);
125
+ console.log(` ⏭️ Skipped: openmatrix.md (already exists)`);
126
126
  skipped++;
127
127
  }
128
128
  else {
129
129
  fs.copyFileSync(autoSrc, autoDest);
130
- console.log(` ✅ Installed: auto-detection rules`);
130
+ console.log(` ✅ Installed: /om:openmatrix (auto-detection)`);
131
131
  installed++;
132
132
  }
133
133
  }
134
134
  catch (err) {
135
- console.log(` ❌ Failed: openmatrix-auto.md (${err.message})`);
135
+ console.log(` ❌ Failed: openmatrix.md (${err.message})`);
136
136
  failed++;
137
137
  }
138
138
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmatrix",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
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",
@@ -1,48 +1,48 @@
1
- ---
2
- name: openmatrix-auto
3
- description: "Use this for ANY development task - adding features, fixing bugs, refactoring code, creating systems, writing tests, or building components. Auto-invokes /om:start to orchestrate the work."
4
- ---
5
-
6
- <objective>
7
- Automatically detect when user wants to accomplish a development task and invoke /om:start without requiring explicit command.
8
- </objective>
9
-
10
- <trigger-conditions>
11
- ## When to Auto-Invoke /om:start
12
-
13
- **Invoke `/om:start` when user wants to:**
14
- - Add/create/implement new features or functionality
15
- - Fix bugs or resolve issues
16
- - Refactor or optimize existing code
17
- - Write tests
18
- - Build components or systems
19
- - Integrate third-party services
20
-
21
- **This includes:**
22
- - Direct requests: "实现登录功能" / "增加一个命令" / "修复bug"
23
- - Complex tasks: "做个完整的用户系统" / "从零搭建后台"
24
- - Multi-step work: "先做A再做B" / "前端+后端+数据库"
25
- </trigger-conditions>
26
-
27
- <exclusions>
28
- ## When NOT to Auto-Invoke
29
-
30
- **Do NOT invoke when:**
31
- - User is asking a question: "怎么实现?" / "如何配置?" / "what is..."
32
- - User is requesting information: "显示配置" / "列出文件" / "show me..."
33
- - User is navigating: "打开目录" / "进入文件夹"
34
- - User is just chatting: "你好" / "谢谢"
35
-
36
- **Key test: Is the user asking you to BUILD/CREATE/FIX something?**
37
- - Yes → Invoke `/om:start`
38
- - No (asking for info) → Do NOT invoke
39
- </exclusions>
40
-
41
- <examples>
42
- | User Input | Action |
43
- |------------|--------|
44
- | `增加一个 om:upgrade 命令` | → `/om:start 增加一个 om:upgrade 命令` |
45
- | `实现用户登录功能` | → `/om:start 实现用户登录功能` |
46
- | `登录页面报错了` | → `/om:start 登录页面报错了` |
47
- | `怎么实现登录?` | → No invoke (question) |
1
+ ---
2
+ name: openmatrix
3
+ description: "Invoke /om:start for any implementation task - adding features, fixing bugs, refactoring, creating commands, writing code, building systems. Use this when user describes work to be done, not for questions or information requests."
4
+ ---
5
+
6
+ <objective>
7
+ Automatically detect when user wants to accomplish a development task and invoke /om:start without requiring explicit command.
8
+ </objective>
9
+
10
+ <trigger-conditions>
11
+ ## When to Auto-Invoke /om:start
12
+
13
+ **Invoke `/om:start` when user wants to:**
14
+ - Add/create/implement new features or functionality
15
+ - Fix bugs or resolve issues
16
+ - Refactor or optimize existing code
17
+ - Write tests
18
+ - Build components or systems
19
+ - Integrate third-party services
20
+
21
+ **This includes:**
22
+ - Direct requests: "实现登录功能" / "增加一个命令" / "修复bug"
23
+ - Complex tasks: "做个完整的用户系统" / "从零搭建后台"
24
+ - Multi-step work: "先做A再做B" / "前端+后端+数据库"
25
+ </trigger-conditions>
26
+
27
+ <exclusions>
28
+ ## When NOT to Auto-Invoke
29
+
30
+ **Do NOT invoke when:**
31
+ - User is asking a question: "怎么实现?" / "如何配置?" / "what is..."
32
+ - User is requesting information: "显示配置" / "列出文件" / "show me..."
33
+ - User is navigating: "打开目录" / "进入文件夹"
34
+ - User is just chatting: "你好" / "谢谢"
35
+
36
+ **Key test: Is the user asking you to BUILD/CREATE/FIX something?**
37
+ - Yes → Invoke `/om:start`
38
+ - No (asking for info) → Do NOT invoke
39
+ </exclusions>
40
+
41
+ <examples>
42
+ | User Input | Action |
43
+ |------------|--------|
44
+ | `增加一个 om:upgrade 命令` | → `/om:start 增加一个 om:upgrade 命令` |
45
+ | `实现用户登录功能` | → `/om:start 实现用户登录功能` |
46
+ | `登录页面报错了` | → `/om:start 登录页面报错了` |
47
+ | `怎么实现登录?` | → No invoke (question) |
48
48
  </examples>