triflux 3.3.0-dev.8 → 4.0.1
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/README.ko.md +108 -199
- package/README.md +108 -199
- package/bin/triflux.mjs +2427 -1762
- package/hooks/keyword-rules.json +361 -354
- package/hooks/pipeline-stop.mjs +5 -2
- package/hub/assign-callbacks.mjs +136 -136
- package/hub/bridge.mjs +734 -684
- package/hub/delegator/contracts.mjs +38 -38
- package/hub/delegator/index.mjs +14 -14
- package/hub/delegator/schema/delegator-tools.schema.json +250 -250
- package/hub/delegator/service.mjs +302 -118
- package/hub/delegator/tool-definitions.mjs +35 -35
- package/hub/hitl.mjs +67 -67
- package/hub/paths.mjs +28 -0
- package/hub/pipe.mjs +589 -561
- package/hub/pipeline/state.mjs +23 -0
- package/hub/public/dashboard.html +349 -0
- package/hub/public/tray-icon.ico +0 -0
- package/hub/public/tray-icon.png +0 -0
- package/hub/router.mjs +782 -782
- package/hub/schema.sql +40 -40
- package/hub/server.mjs +810 -637
- package/hub/store.mjs +706 -706
- package/hub/team/cli/commands/attach.mjs +37 -0
- package/hub/team/cli/commands/control.mjs +43 -0
- package/hub/team/cli/commands/debug.mjs +74 -0
- package/hub/team/cli/commands/focus.mjs +53 -0
- package/hub/team/cli/commands/interrupt.mjs +36 -0
- package/hub/team/cli/commands/kill.mjs +37 -0
- package/hub/team/cli/commands/list.mjs +24 -0
- package/hub/team/cli/commands/send.mjs +37 -0
- package/hub/team/cli/commands/start/index.mjs +87 -0
- package/hub/team/cli/commands/start/parse-args.mjs +32 -0
- package/hub/team/cli/commands/start/start-in-process.mjs +40 -0
- package/hub/team/cli/commands/start/start-mux.mjs +73 -0
- package/hub/team/cli/commands/start/start-wt.mjs +69 -0
- package/hub/team/cli/commands/status.mjs +87 -0
- package/hub/team/cli/commands/stop.mjs +31 -0
- package/hub/team/cli/commands/task.mjs +30 -0
- package/hub/team/cli/commands/tasks.mjs +13 -0
- package/hub/team/{cli.mjs → cli/help.mjs} +38 -99
- package/hub/team/cli/index.mjs +39 -0
- package/hub/team/cli/manifest.mjs +28 -0
- package/hub/team/cli/render.mjs +30 -0
- package/hub/team/cli/services/attach-fallback.mjs +54 -0
- package/hub/team/cli/services/hub-client.mjs +171 -0
- package/hub/team/cli/services/member-selector.mjs +30 -0
- package/hub/team/cli/services/native-control.mjs +115 -0
- package/hub/team/cli/services/runtime-mode.mjs +60 -0
- package/hub/team/cli/services/state-store.mjs +34 -0
- package/hub/team/cli/services/task-model.mjs +30 -0
- package/hub/team/native-supervisor.mjs +69 -63
- package/hub/team/native.mjs +367 -367
- package/hub/team/nativeProxy.mjs +217 -173
- package/hub/team/pane.mjs +149 -149
- package/hub/team/psmux.mjs +946 -946
- package/hub/team/session.mjs +608 -608
- package/hub/team/staleState.mjs +369 -299
- package/hub/tools.mjs +107 -107
- package/hub/tray.mjs +332 -0
- package/hub/workers/claude-worker.mjs +446 -446
- package/hub/workers/codex-mcp.mjs +414 -414
- package/hub/workers/delegator-mcp.mjs +1045 -1045
- package/hub/workers/factory.mjs +21 -21
- package/hub/workers/gemini-worker.mjs +349 -349
- package/hub/workers/interface.mjs +41 -41
- package/package.json +3 -2
- package/scripts/__tests__/keyword-detector.test.mjs +234 -234
- package/scripts/hub-ensure.mjs +102 -101
- package/scripts/keyword-detector.mjs +272 -272
- package/scripts/keyword-rules-expander.mjs +521 -521
- package/scripts/lib/keyword-rules.mjs +168 -168
- package/scripts/lib/mcp-filter.mjs +642 -642
- package/scripts/lib/mcp-server-catalog.mjs +118 -118
- package/scripts/mcp-check.mjs +126 -126
- package/scripts/preflight-cache.mjs +19 -0
- package/scripts/run.cjs +62 -62
- package/scripts/setup.mjs +68 -31
- package/scripts/test-tfx-route-no-claude-native.mjs +57 -57
- package/scripts/tfx-route-worker.mjs +161 -161
- package/scripts/tfx-route.sh +1360 -1326
- package/skills/tfx-auto/SKILL.md +196 -196
- package/skills/tfx-auto-codex/SKILL.md +77 -77
- package/skills/tfx-multi/SKILL.md +378 -378
- package/hub/team/cli-team-common.mjs +0 -348
- package/hub/team/cli-team-control.mjs +0 -393
- package/hub/team/cli-team-start.mjs +0 -516
- package/hub/team/cli-team-status.mjs +0 -283
- package/skills/auto-verify/SKILL.md +0 -145
- package/skills/manage-skills/SKILL.md +0 -192
- package/skills/verify-implementation/SKILL.md +0 -138
package/hooks/keyword-rules.json
CHANGED
|
@@ -1,354 +1,361 @@
|
|
|
1
|
-
{
|
|
2
|
-
"rules": [
|
|
3
|
-
{
|
|
4
|
-
"id": "tfx-cancel",
|
|
5
|
-
"patterns": [
|
|
6
|
-
{
|
|
7
|
-
"source": "\\b(canceltfx|stoptfx)\\b",
|
|
8
|
-
"flags": "i"
|
|
9
|
-
}
|
|
10
|
-
],
|
|
11
|
-
"skill": "tfx-cancel",
|
|
12
|
-
"priority": 0,
|
|
13
|
-
"supersedes": [
|
|
14
|
-
"tfx-multi",
|
|
15
|
-
"tfx-auto",
|
|
16
|
-
"tfx-auto-codex",
|
|
17
|
-
"tfx-codex",
|
|
18
|
-
"tfx-gemini"
|
|
19
|
-
],
|
|
20
|
-
"exclusive": true,
|
|
21
|
-
"state": null,
|
|
22
|
-
"mcp_route": null
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"id": "tfx-multi",
|
|
26
|
-
"patterns": [
|
|
27
|
-
{
|
|
28
|
-
"source": "(?<!\\b(?:my|the|our|omc|oh-my-claudecode)\\s)\\btfx[\\s-]?multi\\b",
|
|
29
|
-
"flags": "i"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"skill": "tfx-multi",
|
|
33
|
-
"priority": 1,
|
|
34
|
-
"supersedes": [],
|
|
35
|
-
"exclusive": false,
|
|
36
|
-
"state": null,
|
|
37
|
-
"mcp_route": null
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"id": "tfx-auto-codex",
|
|
41
|
-
"patterns": [
|
|
42
|
-
{
|
|
43
|
-
"source": "\\btfx[\\s-]?auto[\\s-]?codex\\b",
|
|
44
|
-
"flags": "i"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"skill": "tfx-auto-codex",
|
|
48
|
-
"priority": 1,
|
|
49
|
-
"supersedes": [
|
|
50
|
-
"tfx-auto",
|
|
51
|
-
"tfx-codex"
|
|
52
|
-
],
|
|
53
|
-
"exclusive": false,
|
|
54
|
-
"state": null,
|
|
55
|
-
"mcp_route": null
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"id": "tfx-auto",
|
|
59
|
-
"patterns": [
|
|
60
|
-
{
|
|
61
|
-
"source": "\\btfx[\\s-]?auto\\b",
|
|
62
|
-
"flags": "i"
|
|
63
|
-
}
|
|
64
|
-
],
|
|
65
|
-
"skill": "tfx-auto",
|
|
66
|
-
"priority": 2,
|
|
67
|
-
"supersedes": [],
|
|
68
|
-
"exclusive": false,
|
|
69
|
-
"state": null,
|
|
70
|
-
"mcp_route": null
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"id": "tfx-codex",
|
|
74
|
-
"patterns": [
|
|
75
|
-
{
|
|
76
|
-
"source": "\\btfx[\\s-]?codex\\b",
|
|
77
|
-
"flags": "i"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"skill": "tfx-codex",
|
|
81
|
-
"priority": 3,
|
|
82
|
-
"supersedes": [],
|
|
83
|
-
"exclusive": false,
|
|
84
|
-
"state": null,
|
|
85
|
-
"mcp_route": null
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"id": "tfx-gemini",
|
|
89
|
-
"patterns": [
|
|
90
|
-
{
|
|
91
|
-
"source": "\\btfx[\\s-]?gemini\\b",
|
|
92
|
-
"flags": "i"
|
|
93
|
-
}
|
|
94
|
-
],
|
|
95
|
-
"skill": "tfx-gemini",
|
|
96
|
-
"priority": 3,
|
|
97
|
-
"supersedes": [],
|
|
98
|
-
"exclusive": false,
|
|
99
|
-
"state": null,
|
|
100
|
-
"mcp_route": null
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"id": "
|
|
104
|
-
"patterns": [
|
|
105
|
-
{
|
|
106
|
-
"source": "\\
|
|
107
|
-
"flags": "i"
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
"
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
"
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
"
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
"
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
"
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
"
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
"
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
"
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
1
|
+
{
|
|
2
|
+
"rules": [
|
|
3
|
+
{
|
|
4
|
+
"id": "tfx-cancel",
|
|
5
|
+
"patterns": [
|
|
6
|
+
{
|
|
7
|
+
"source": "\\b(canceltfx|stoptfx)\\b",
|
|
8
|
+
"flags": "i"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"skill": "tfx-cancel",
|
|
12
|
+
"priority": 0,
|
|
13
|
+
"supersedes": [
|
|
14
|
+
"tfx-multi",
|
|
15
|
+
"tfx-auto",
|
|
16
|
+
"tfx-auto-codex",
|
|
17
|
+
"tfx-codex",
|
|
18
|
+
"tfx-gemini"
|
|
19
|
+
],
|
|
20
|
+
"exclusive": true,
|
|
21
|
+
"state": null,
|
|
22
|
+
"mcp_route": null
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "tfx-multi",
|
|
26
|
+
"patterns": [
|
|
27
|
+
{
|
|
28
|
+
"source": "(?<!\\b(?:my|the|our|omc|oh-my-claudecode)\\s)\\btfx[\\s-]?multi\\b",
|
|
29
|
+
"flags": "i"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"skill": "tfx-multi",
|
|
33
|
+
"priority": 1,
|
|
34
|
+
"supersedes": [],
|
|
35
|
+
"exclusive": false,
|
|
36
|
+
"state": null,
|
|
37
|
+
"mcp_route": null
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "tfx-auto-codex",
|
|
41
|
+
"patterns": [
|
|
42
|
+
{
|
|
43
|
+
"source": "\\btfx[\\s-]?auto[\\s-]?codex\\b",
|
|
44
|
+
"flags": "i"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"skill": "tfx-auto-codex",
|
|
48
|
+
"priority": 1,
|
|
49
|
+
"supersedes": [
|
|
50
|
+
"tfx-auto",
|
|
51
|
+
"tfx-codex"
|
|
52
|
+
],
|
|
53
|
+
"exclusive": false,
|
|
54
|
+
"state": null,
|
|
55
|
+
"mcp_route": null
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "tfx-auto",
|
|
59
|
+
"patterns": [
|
|
60
|
+
{
|
|
61
|
+
"source": "\\btfx[\\s-]?auto\\b",
|
|
62
|
+
"flags": "i"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"skill": "tfx-auto",
|
|
66
|
+
"priority": 2,
|
|
67
|
+
"supersedes": [],
|
|
68
|
+
"exclusive": false,
|
|
69
|
+
"state": null,
|
|
70
|
+
"mcp_route": null
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "tfx-codex",
|
|
74
|
+
"patterns": [
|
|
75
|
+
{
|
|
76
|
+
"source": "\\btfx[\\s-]?codex\\b",
|
|
77
|
+
"flags": "i"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"skill": "tfx-codex",
|
|
81
|
+
"priority": 3,
|
|
82
|
+
"supersedes": [],
|
|
83
|
+
"exclusive": false,
|
|
84
|
+
"state": null,
|
|
85
|
+
"mcp_route": null
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "tfx-gemini",
|
|
89
|
+
"patterns": [
|
|
90
|
+
{
|
|
91
|
+
"source": "\\btfx[\\s-]?gemini\\b",
|
|
92
|
+
"flags": "i"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"skill": "tfx-gemini",
|
|
96
|
+
"priority": 3,
|
|
97
|
+
"supersedes": [],
|
|
98
|
+
"exclusive": false,
|
|
99
|
+
"state": null,
|
|
100
|
+
"mcp_route": null
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"id": "tfx-hub",
|
|
104
|
+
"patterns": [
|
|
105
|
+
{
|
|
106
|
+
"source": "\\btfx[\\s-]?hub\\b",
|
|
107
|
+
"flags": "i"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"skill": "tfx-hub",
|
|
111
|
+
"priority": 2,
|
|
112
|
+
"supersedes": [],
|
|
113
|
+
"exclusive": false,
|
|
114
|
+
"state": null,
|
|
115
|
+
"mcp_route": null
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "tfx-doctor",
|
|
119
|
+
"patterns": [
|
|
120
|
+
{
|
|
121
|
+
"source": "\\btfx[\\s-]?doctor\\b",
|
|
122
|
+
"flags": "i"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"skill": "tfx-doctor",
|
|
126
|
+
"priority": 2,
|
|
127
|
+
"supersedes": [],
|
|
128
|
+
"exclusive": false,
|
|
129
|
+
"state": null,
|
|
130
|
+
"mcp_route": null
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "tfx-setup",
|
|
134
|
+
"patterns": [
|
|
135
|
+
{
|
|
136
|
+
"source": "\\btfx[\\s-]?setup\\b",
|
|
137
|
+
"flags": "i"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"skill": "tfx-setup",
|
|
141
|
+
"priority": 2,
|
|
142
|
+
"supersedes": [],
|
|
143
|
+
"exclusive": false,
|
|
144
|
+
"state": null,
|
|
145
|
+
"mcp_route": null
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "handoff-route",
|
|
149
|
+
"patterns": [
|
|
150
|
+
{
|
|
151
|
+
"source": "\\b(핸드오프|handoff|세션\\s*넘기)[\\s]*(생성|만들|써줘|작성|넘겨)",
|
|
152
|
+
"flags": "i"
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"skill": "mp",
|
|
156
|
+
"priority": 5,
|
|
157
|
+
"supersedes": [],
|
|
158
|
+
"exclusive": false,
|
|
159
|
+
"state": null,
|
|
160
|
+
"mcp_route": null
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "notion-route",
|
|
164
|
+
"patterns": [
|
|
165
|
+
{
|
|
166
|
+
"source": "\\b(노션|notion)[\\s-]?(페이지|글|조회|생성|수정|검색)\\b",
|
|
167
|
+
"flags": "i"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"source": "(노션|\\bnotion\\b)",
|
|
171
|
+
"flags": "i"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"skill": null,
|
|
175
|
+
"priority": 10,
|
|
176
|
+
"supersedes": [],
|
|
177
|
+
"exclusive": false,
|
|
178
|
+
"state": null,
|
|
179
|
+
"mcp_route": "gemini"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"id": "chrome-route",
|
|
183
|
+
"patterns": [
|
|
184
|
+
{
|
|
185
|
+
"source": "\\b(크롬|chrome|브라우저)[\\s-]?(열|접속|로그인|navigate|click)\\b",
|
|
186
|
+
"flags": "i"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"source": "(크롬|\\bchrome\\b)",
|
|
190
|
+
"flags": "i"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"skill": null,
|
|
194
|
+
"priority": 10,
|
|
195
|
+
"supersedes": [],
|
|
196
|
+
"exclusive": false,
|
|
197
|
+
"state": null,
|
|
198
|
+
"mcp_route": "gemini"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "jira-route",
|
|
202
|
+
"patterns": [
|
|
203
|
+
{
|
|
204
|
+
"source": "\\b(jira|지라)[\\s-]?(이슈|티켓|생성|조회|스프린트)\\b",
|
|
205
|
+
"flags": "i"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"source": "(지라|\\bjira\\b)",
|
|
209
|
+
"flags": "i"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"skill": null,
|
|
213
|
+
"priority": 10,
|
|
214
|
+
"supersedes": [],
|
|
215
|
+
"exclusive": false,
|
|
216
|
+
"state": null,
|
|
217
|
+
"mcp_route": "codex"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "mail-route",
|
|
221
|
+
"patterns": [
|
|
222
|
+
{
|
|
223
|
+
"source": "\\b(메일|gmail|이메일)[\\s-]?(보내|읽|검색|draft)\\b",
|
|
224
|
+
"flags": "i"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"source": "(메일|이메일|\\bgmail\\b)",
|
|
228
|
+
"flags": "i"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"skill": null,
|
|
232
|
+
"priority": 10,
|
|
233
|
+
"supersedes": [],
|
|
234
|
+
"exclusive": false,
|
|
235
|
+
"state": null,
|
|
236
|
+
"mcp_route": "gemini"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"id": "calendar-route",
|
|
240
|
+
"patterns": [
|
|
241
|
+
{
|
|
242
|
+
"source": "\\b(일정|캘린더|calendar)[\\s-]?(생성|조회|추가)\\b",
|
|
243
|
+
"flags": "i"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"source": "(일정|캘린더|\\bcalendar\\b)",
|
|
247
|
+
"flags": "i"
|
|
248
|
+
}
|
|
249
|
+
],
|
|
250
|
+
"skill": null,
|
|
251
|
+
"priority": 10,
|
|
252
|
+
"supersedes": [],
|
|
253
|
+
"exclusive": false,
|
|
254
|
+
"state": null,
|
|
255
|
+
"mcp_route": "gemini"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": "playwright-route",
|
|
259
|
+
"patterns": [
|
|
260
|
+
{
|
|
261
|
+
"source": "\\b(playwright|브라우저\\s*테스트)\\b",
|
|
262
|
+
"flags": "i"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"skill": null,
|
|
266
|
+
"priority": 10,
|
|
267
|
+
"supersedes": [],
|
|
268
|
+
"exclusive": false,
|
|
269
|
+
"state": null,
|
|
270
|
+
"mcp_route": "gemini"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "canva-route",
|
|
274
|
+
"patterns": [
|
|
275
|
+
{
|
|
276
|
+
"source": "\\b(canva|캔바|디자인\\s*생성)\\b",
|
|
277
|
+
"flags": "i"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"skill": null,
|
|
281
|
+
"priority": 10,
|
|
282
|
+
"supersedes": [],
|
|
283
|
+
"exclusive": false,
|
|
284
|
+
"state": null,
|
|
285
|
+
"mcp_route": "gemini"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "confluence-route",
|
|
289
|
+
"patterns": [
|
|
290
|
+
{
|
|
291
|
+
"source": "\\b(confluence|위키|wiki)[\\s-]?(페이지|문서|조회|생성|수정|검색)\\b",
|
|
292
|
+
"flags": "i"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"source": "(위키|\\bconfluence\\b|\\bwiki\\b)",
|
|
296
|
+
"flags": "i"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"skill": null,
|
|
300
|
+
"priority": 10,
|
|
301
|
+
"supersedes": [],
|
|
302
|
+
"exclusive": false,
|
|
303
|
+
"state": null,
|
|
304
|
+
"mcp_route": "gemini"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "slack-route",
|
|
308
|
+
"patterns": [
|
|
309
|
+
{
|
|
310
|
+
"source": "\\b(slack|슬랙)[\\s-]?(메시지|채널|보내|읽|검색|알림)\\b",
|
|
311
|
+
"flags": "i"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"source": "(슬랙|\\bslack\\b)",
|
|
315
|
+
"flags": "i"
|
|
316
|
+
}
|
|
317
|
+
],
|
|
318
|
+
"skill": null,
|
|
319
|
+
"priority": 10,
|
|
320
|
+
"supersedes": [],
|
|
321
|
+
"exclusive": false,
|
|
322
|
+
"state": null,
|
|
323
|
+
"mcp_route": "gemini"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"id": "github-route",
|
|
327
|
+
"patterns": [
|
|
328
|
+
{
|
|
329
|
+
"source": "\\b(github|깃허브)[\\s-]?(이슈|issue|PR|pull|커밋|commit|리포|repo)\\b",
|
|
330
|
+
"flags": "i"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"source": "(깃허브|\\bgithub\\b)",
|
|
334
|
+
"flags": "i"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"skill": null,
|
|
338
|
+
"priority": 10,
|
|
339
|
+
"supersedes": [],
|
|
340
|
+
"exclusive": false,
|
|
341
|
+
"state": null,
|
|
342
|
+
"mcp_route": "codex"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"id": "suppress-omc-team",
|
|
346
|
+
"patterns": [
|
|
347
|
+
{
|
|
348
|
+
"source": "(?<!tfx[\\s-]?)(팀|\\bteam\\b)",
|
|
349
|
+
"flags": "i"
|
|
350
|
+
}
|
|
351
|
+
],
|
|
352
|
+
"skill": null,
|
|
353
|
+
"action": "suppress_omc",
|
|
354
|
+
"priority": 20,
|
|
355
|
+
"supersedes": [],
|
|
356
|
+
"exclusive": false,
|
|
357
|
+
"state": null,
|
|
358
|
+
"mcp_route": null
|
|
359
|
+
}
|
|
360
|
+
]
|
|
361
|
+
}
|