openmatrix 0.1.35 → 0.1.36
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 +15 -3
package/package.json
CHANGED
package/skills/openmatrix.md
CHANGED
|
@@ -8,10 +8,12 @@ always_load: true
|
|
|
8
8
|
<EXTREMELY-IMPORTANT>
|
|
9
9
|
## 必须触发此 Skill 的情况
|
|
10
10
|
|
|
11
|
+
**此 Skill 是所有任务的入口点。只要用户有任何行动意图,就必须触发!**
|
|
12
|
+
|
|
11
13
|
**1. 用户要做某事** (包含行动词)
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
implement/add/fix/develop/write/change/do/create/build/refactor/optimize/delete/remove/update
|
|
15
|
+
实现/添加/修复/开发/写/改/做/创建/构建/重构/优化/删除/移除/更新/帮/帮我
|
|
16
|
+
implement/add/fix/develop/write/change/do/create/build/refactor/optimize/delete/remove/update/help
|
|
15
17
|
```
|
|
16
18
|
|
|
17
19
|
**2. 用户问如何做某事** (疑问 + 行动)
|
|
@@ -20,7 +22,17 @@ implement/add/fix/develop/write/change/do/create/build/refactor/optimize/delete/
|
|
|
20
22
|
how to implement/how to fix/how to do/how to add/how to change
|
|
21
23
|
```
|
|
22
24
|
|
|
23
|
-
**3.
|
|
25
|
+
**3. 常见触发模式**
|
|
26
|
+
```
|
|
27
|
+
"修复下..." → 触发 ✅
|
|
28
|
+
"帮我..." → 触发 ✅
|
|
29
|
+
"实现一个..." → 触发 ✅
|
|
30
|
+
"添加..." → 触发 ✅
|
|
31
|
+
"改一下..." → 触发 ✅
|
|
32
|
+
"写个..." → 触发 ✅
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**4. 判断口诀**
|
|
24
36
|
```
|
|
25
37
|
输入包含 "行动词" → 触发
|
|
26
38
|
输入包含 "疑问词 + 行动词" → 触发
|