openmatrix 0.1.22 → 0.1.23
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.md +31 -0
package/package.json
CHANGED
package/skills/openmatrix.md
CHANGED
|
@@ -24,6 +24,37 @@ Everything else → smart selection between `/om:brainstorm` and `/om:start`.
|
|
|
24
24
|
Automatically detect when user wants to accomplish a development task and intelligently choose between brainstorm (for complex tasks) or start (for simple tasks).
|
|
25
25
|
</objective>
|
|
26
26
|
|
|
27
|
+
<process>
|
|
28
|
+
1. **检测用户输入**
|
|
29
|
+
- 用户直接发送任务描述(不带命令前缀)
|
|
30
|
+
- 分析是否为开发任务(写代码/改代码/做东西)
|
|
31
|
+
|
|
32
|
+
2. **判断任务复杂度**
|
|
33
|
+
|
|
34
|
+
**复杂任务** (满足任一条件):
|
|
35
|
+
- 新功能开发: "实现用户登录" / "添加支付功能"
|
|
36
|
+
- 多模块改动: "重构用户系统" / "优化整体性能"
|
|
37
|
+
- 架构相关: "搭建框架" / "从零开始"
|
|
38
|
+
- 关键词: "系统" / "架构" / "模块" / "集成" / "完整"
|
|
39
|
+
|
|
40
|
+
**简单任务** (满足任一条件):
|
|
41
|
+
- Bug 修复: "修复登录bug" / "解决样式问题"
|
|
42
|
+
- 小改动: "修改文案" / "改变量名"
|
|
43
|
+
- 单一功能: "添加一个按钮" / "写个工具函数"
|
|
44
|
+
- 关键词: "修复" / "解决" / "改" / "调整" / "简单"
|
|
45
|
+
|
|
46
|
+
3. **智能选择执行路径**
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
复杂任务 → 调用 /om:brainstorm
|
|
50
|
+
简单任务 → 调用 /om:start
|
|
51
|
+
不确定 → 默认 /om:brainstorm (宁可多问)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
4. **执行选择的命令**
|
|
55
|
+
- 调用 Skill 工具执行对应的 skill
|
|
56
|
+
</process>
|
|
57
|
+
|
|
27
58
|
<trigger-conditions>
|
|
28
59
|
## AUTO-INVOKE RULES (Mandatory)
|
|
29
60
|
|