openmatrix 0.1.10 → 0.1.11
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 +1 -1
- package/skills/openmatrix-auto.md +47 -47
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: openmatrix-auto
|
|
3
|
-
description: "
|
|
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-auto
|
|
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>
|