notoken-core 1.8.0 → 1.8.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/config/entities.json +3 -3
- package/config/intents.json +453 -58
- package/dist/automation/discordPatchright.js +16 -3
- package/dist/handlers/executor.js +441 -6
- package/dist/index.d.ts +4 -1
- package/dist/index.js +5 -1
- package/dist/nlp/llmFallback.d.ts +47 -0
- package/dist/nlp/llmFallback.js +147 -35
- package/dist/nlp/llmParser.d.ts +5 -1
- package/dist/nlp/llmParser.js +43 -24
- package/dist/nlp/parseIntent.js +20 -2
- package/dist/nlp/ruleParser.js +32 -1
- package/dist/utils/discordDiag.js +20 -12
- package/dist/utils/openclawDiag.d.ts +98 -0
- package/dist/utils/openclawDiag.js +501 -1
- package/dist/utils/openclawLogParser.d.ts +65 -0
- package/dist/utils/openclawLogParser.js +168 -0
- package/dist/utils/userContext.d.ts +57 -0
- package/dist/utils/userContext.js +133 -0
- package/package.json +1 -1
package/config/intents.json
CHANGED
|
@@ -2825,6 +2825,72 @@
|
|
|
2825
2825
|
"setup ollama"
|
|
2826
2826
|
]
|
|
2827
2827
|
},
|
|
2828
|
+
{
|
|
2829
|
+
"name": "tool.uninstall",
|
|
2830
|
+
"description": "Uninstall a CLI tool like Claude, Codex, OpenClaw, Ollama, Docker, Convex, Node, or Bun",
|
|
2831
|
+
"synonyms": [
|
|
2832
|
+
"uninstall claude",
|
|
2833
|
+
"uninstall codex",
|
|
2834
|
+
"uninstall openclaw",
|
|
2835
|
+
"uninstall ollama",
|
|
2836
|
+
"uninstall docker",
|
|
2837
|
+
"uninstall convex",
|
|
2838
|
+
"uninstall node",
|
|
2839
|
+
"uninstall bun",
|
|
2840
|
+
"remove claude",
|
|
2841
|
+
"remove codex",
|
|
2842
|
+
"remove openclaw",
|
|
2843
|
+
"remove ollama",
|
|
2844
|
+
"delete claude",
|
|
2845
|
+
"delete codex"
|
|
2846
|
+
],
|
|
2847
|
+
"fields": {
|
|
2848
|
+
"tool": {
|
|
2849
|
+
"type": "string",
|
|
2850
|
+
"required": true,
|
|
2851
|
+
"description": "tool name to uninstall"
|
|
2852
|
+
}
|
|
2853
|
+
},
|
|
2854
|
+
"command": "echo 'Use tool.uninstall handler'",
|
|
2855
|
+
"execution": "local",
|
|
2856
|
+
"requiresConfirmation": true,
|
|
2857
|
+
"riskLevel": "high",
|
|
2858
|
+
"examples": [
|
|
2859
|
+
"uninstall codex",
|
|
2860
|
+
"remove openclaw",
|
|
2861
|
+
"uninstall ollama"
|
|
2862
|
+
]
|
|
2863
|
+
},
|
|
2864
|
+
{
|
|
2865
|
+
"name": "tool.reinstall",
|
|
2866
|
+
"description": "Reinstall a CLI tool \u2014 uninstall then install fresh",
|
|
2867
|
+
"synonyms": [
|
|
2868
|
+
"reinstall claude",
|
|
2869
|
+
"reinstall codex",
|
|
2870
|
+
"reinstall openclaw",
|
|
2871
|
+
"reinstall ollama",
|
|
2872
|
+
"reinstall node",
|
|
2873
|
+
"reinstall docker",
|
|
2874
|
+
"reinstall bun",
|
|
2875
|
+
"reinstall convex"
|
|
2876
|
+
],
|
|
2877
|
+
"fields": {
|
|
2878
|
+
"tool": {
|
|
2879
|
+
"type": "string",
|
|
2880
|
+
"required": true,
|
|
2881
|
+
"description": "tool name to reinstall"
|
|
2882
|
+
}
|
|
2883
|
+
},
|
|
2884
|
+
"command": "echo 'Use tool.reinstall handler'",
|
|
2885
|
+
"execution": "local",
|
|
2886
|
+
"requiresConfirmation": true,
|
|
2887
|
+
"riskLevel": "high",
|
|
2888
|
+
"examples": [
|
|
2889
|
+
"reinstall codex",
|
|
2890
|
+
"reinstall openclaw",
|
|
2891
|
+
"reinstall claude"
|
|
2892
|
+
]
|
|
2893
|
+
},
|
|
2828
2894
|
{
|
|
2829
2895
|
"name": "package.check",
|
|
2830
2896
|
"description": "Check if a package is installed",
|
|
@@ -8364,7 +8430,7 @@
|
|
|
8364
8430
|
},
|
|
8365
8431
|
{
|
|
8366
8432
|
"name": "ai.diagnose",
|
|
8367
|
-
"description": "Diagnose image generation issues
|
|
8433
|
+
"description": "Diagnose image generation issues \u2014 check engine, GPU, model, API, disk",
|
|
8368
8434
|
"synonyms": [
|
|
8369
8435
|
"diagnose image generation",
|
|
8370
8436
|
"why isnt it working",
|
|
@@ -9000,112 +9066,270 @@
|
|
|
9000
9066
|
{
|
|
9001
9067
|
"name": "dev.json_format",
|
|
9002
9068
|
"description": "Pretty-print and format JSON",
|
|
9003
|
-
"synonyms": [
|
|
9004
|
-
|
|
9069
|
+
"synonyms": [
|
|
9070
|
+
"format json",
|
|
9071
|
+
"pretty print json",
|
|
9072
|
+
"beautify json",
|
|
9073
|
+
"indent json",
|
|
9074
|
+
"format this json",
|
|
9075
|
+
"prettify json"
|
|
9076
|
+
],
|
|
9077
|
+
"fields": {
|
|
9078
|
+
"input": {
|
|
9079
|
+
"type": "string",
|
|
9080
|
+
"required": true
|
|
9081
|
+
}
|
|
9082
|
+
},
|
|
9005
9083
|
"command": "echo 'Use dev handler'",
|
|
9006
9084
|
"execution": "local",
|
|
9007
9085
|
"requiresConfirmation": false,
|
|
9008
9086
|
"riskLevel": "low",
|
|
9009
|
-
"examples": [
|
|
9087
|
+
"examples": [
|
|
9088
|
+
"format this json",
|
|
9089
|
+
"pretty print json",
|
|
9090
|
+
"beautify json"
|
|
9091
|
+
]
|
|
9010
9092
|
},
|
|
9011
9093
|
{
|
|
9012
9094
|
"name": "dev.json_validate",
|
|
9013
9095
|
"description": "Validate JSON syntax",
|
|
9014
|
-
"synonyms": [
|
|
9015
|
-
|
|
9096
|
+
"synonyms": [
|
|
9097
|
+
"validate json",
|
|
9098
|
+
"check json",
|
|
9099
|
+
"is this valid json",
|
|
9100
|
+
"json lint",
|
|
9101
|
+
"verify json"
|
|
9102
|
+
],
|
|
9103
|
+
"fields": {
|
|
9104
|
+
"input": {
|
|
9105
|
+
"type": "string",
|
|
9106
|
+
"required": true
|
|
9107
|
+
}
|
|
9108
|
+
},
|
|
9016
9109
|
"command": "echo 'Use dev handler'",
|
|
9017
9110
|
"execution": "local",
|
|
9018
9111
|
"requiresConfirmation": false,
|
|
9019
9112
|
"riskLevel": "low",
|
|
9020
|
-
"examples": [
|
|
9113
|
+
"examples": [
|
|
9114
|
+
"validate this json",
|
|
9115
|
+
"is this valid json",
|
|
9116
|
+
"check json syntax"
|
|
9117
|
+
]
|
|
9021
9118
|
},
|
|
9022
9119
|
{
|
|
9023
9120
|
"name": "dev.regex",
|
|
9024
9121
|
"description": "Test a regex pattern against a string",
|
|
9025
|
-
"synonyms": [
|
|
9026
|
-
|
|
9122
|
+
"synonyms": [
|
|
9123
|
+
"test regex",
|
|
9124
|
+
"match pattern",
|
|
9125
|
+
"regex test",
|
|
9126
|
+
"regex match",
|
|
9127
|
+
"try regex",
|
|
9128
|
+
"run regex"
|
|
9129
|
+
],
|
|
9130
|
+
"fields": {
|
|
9131
|
+
"pattern": {
|
|
9132
|
+
"type": "string",
|
|
9133
|
+
"required": true
|
|
9134
|
+
},
|
|
9135
|
+
"testString": {
|
|
9136
|
+
"type": "string",
|
|
9137
|
+
"required": true
|
|
9138
|
+
}
|
|
9139
|
+
},
|
|
9027
9140
|
"command": "echo 'Use dev handler'",
|
|
9028
9141
|
"execution": "local",
|
|
9029
9142
|
"requiresConfirmation": false,
|
|
9030
9143
|
"riskLevel": "low",
|
|
9031
|
-
"examples": [
|
|
9144
|
+
"examples": [
|
|
9145
|
+
"test regex",
|
|
9146
|
+
"match pattern against string",
|
|
9147
|
+
"try this regex"
|
|
9148
|
+
]
|
|
9032
9149
|
},
|
|
9033
9150
|
{
|
|
9034
9151
|
"name": "dev.base64_encode",
|
|
9035
9152
|
"description": "Encode a string to Base64",
|
|
9036
|
-
"synonyms": [
|
|
9037
|
-
|
|
9153
|
+
"synonyms": [
|
|
9154
|
+
"encode base64",
|
|
9155
|
+
"base64 encode",
|
|
9156
|
+
"to base64",
|
|
9157
|
+
"base64 this"
|
|
9158
|
+
],
|
|
9159
|
+
"fields": {
|
|
9160
|
+
"input": {
|
|
9161
|
+
"type": "string",
|
|
9162
|
+
"required": true
|
|
9163
|
+
}
|
|
9164
|
+
},
|
|
9038
9165
|
"command": "echo 'Use dev handler'",
|
|
9039
9166
|
"execution": "local",
|
|
9040
9167
|
"requiresConfirmation": false,
|
|
9041
9168
|
"riskLevel": "low",
|
|
9042
|
-
"examples": [
|
|
9169
|
+
"examples": [
|
|
9170
|
+
"encode base64",
|
|
9171
|
+
"base64 encode this",
|
|
9172
|
+
"convert to base64"
|
|
9173
|
+
]
|
|
9043
9174
|
},
|
|
9044
9175
|
{
|
|
9045
9176
|
"name": "dev.base64_decode",
|
|
9046
9177
|
"description": "Decode a Base64 string",
|
|
9047
|
-
"synonyms": [
|
|
9048
|
-
|
|
9178
|
+
"synonyms": [
|
|
9179
|
+
"decode base64",
|
|
9180
|
+
"base64 decode",
|
|
9181
|
+
"from base64",
|
|
9182
|
+
"unbase64"
|
|
9183
|
+
],
|
|
9184
|
+
"fields": {
|
|
9185
|
+
"input": {
|
|
9186
|
+
"type": "string",
|
|
9187
|
+
"required": true
|
|
9188
|
+
}
|
|
9189
|
+
},
|
|
9049
9190
|
"command": "echo 'Use dev handler'",
|
|
9050
9191
|
"execution": "local",
|
|
9051
9192
|
"requiresConfirmation": false,
|
|
9052
9193
|
"riskLevel": "low",
|
|
9053
|
-
"examples": [
|
|
9194
|
+
"examples": [
|
|
9195
|
+
"decode base64",
|
|
9196
|
+
"base64 decode this",
|
|
9197
|
+
"convert from base64"
|
|
9198
|
+
]
|
|
9054
9199
|
},
|
|
9055
9200
|
{
|
|
9056
9201
|
"name": "dev.url_encode",
|
|
9057
9202
|
"description": "URL-encode a string",
|
|
9058
|
-
"synonyms": [
|
|
9059
|
-
|
|
9203
|
+
"synonyms": [
|
|
9204
|
+
"url encode",
|
|
9205
|
+
"urlencode",
|
|
9206
|
+
"percent encode",
|
|
9207
|
+
"encode url"
|
|
9208
|
+
],
|
|
9209
|
+
"fields": {
|
|
9210
|
+
"input": {
|
|
9211
|
+
"type": "string",
|
|
9212
|
+
"required": true
|
|
9213
|
+
}
|
|
9214
|
+
},
|
|
9060
9215
|
"command": "echo 'Use dev handler'",
|
|
9061
9216
|
"execution": "local",
|
|
9062
9217
|
"requiresConfirmation": false,
|
|
9063
9218
|
"riskLevel": "low",
|
|
9064
|
-
"examples": [
|
|
9219
|
+
"examples": [
|
|
9220
|
+
"url encode this",
|
|
9221
|
+
"percent encode string",
|
|
9222
|
+
"urlencode"
|
|
9223
|
+
]
|
|
9065
9224
|
},
|
|
9066
9225
|
{
|
|
9067
9226
|
"name": "dev.url_decode",
|
|
9068
9227
|
"description": "URL-decode a string",
|
|
9069
|
-
"synonyms": [
|
|
9070
|
-
|
|
9228
|
+
"synonyms": [
|
|
9229
|
+
"url decode",
|
|
9230
|
+
"urldecode",
|
|
9231
|
+
"percent decode",
|
|
9232
|
+
"decode url"
|
|
9233
|
+
],
|
|
9234
|
+
"fields": {
|
|
9235
|
+
"input": {
|
|
9236
|
+
"type": "string",
|
|
9237
|
+
"required": true
|
|
9238
|
+
}
|
|
9239
|
+
},
|
|
9071
9240
|
"command": "echo 'Use dev handler'",
|
|
9072
9241
|
"execution": "local",
|
|
9073
9242
|
"requiresConfirmation": false,
|
|
9074
9243
|
"riskLevel": "low",
|
|
9075
|
-
"examples": [
|
|
9244
|
+
"examples": [
|
|
9245
|
+
"url decode this",
|
|
9246
|
+
"percent decode string",
|
|
9247
|
+
"urldecode"
|
|
9248
|
+
]
|
|
9076
9249
|
},
|
|
9077
9250
|
{
|
|
9078
9251
|
"name": "dev.hash",
|
|
9079
9252
|
"description": "Hash a string or file with md5, sha1, or sha256",
|
|
9080
|
-
"synonyms": [
|
|
9081
|
-
|
|
9253
|
+
"synonyms": [
|
|
9254
|
+
"hash",
|
|
9255
|
+
"md5",
|
|
9256
|
+
"sha1",
|
|
9257
|
+
"sha256",
|
|
9258
|
+
"md5 hash",
|
|
9259
|
+
"sha256 of",
|
|
9260
|
+
"hash this",
|
|
9261
|
+
"checksum",
|
|
9262
|
+
"hash file"
|
|
9263
|
+
],
|
|
9264
|
+
"fields": {
|
|
9265
|
+
"input": {
|
|
9266
|
+
"type": "string",
|
|
9267
|
+
"required": true
|
|
9268
|
+
},
|
|
9269
|
+
"algo": {
|
|
9270
|
+
"type": "string",
|
|
9271
|
+
"required": false,
|
|
9272
|
+
"default": "sha256"
|
|
9273
|
+
}
|
|
9274
|
+
},
|
|
9082
9275
|
"command": "echo 'Use dev handler'",
|
|
9083
9276
|
"execution": "local",
|
|
9084
9277
|
"requiresConfirmation": false,
|
|
9085
9278
|
"riskLevel": "low",
|
|
9086
|
-
"examples": [
|
|
9279
|
+
"examples": [
|
|
9280
|
+
"md5 hash of hello",
|
|
9281
|
+
"sha256 this string",
|
|
9282
|
+
"hash this file"
|
|
9283
|
+
]
|
|
9087
9284
|
},
|
|
9088
9285
|
{
|
|
9089
9286
|
"name": "dev.uuid",
|
|
9090
9287
|
"description": "Generate a random UUID v4",
|
|
9091
|
-
"synonyms": [
|
|
9288
|
+
"synonyms": [
|
|
9289
|
+
"generate uuid",
|
|
9290
|
+
"random uuid",
|
|
9291
|
+
"uuid",
|
|
9292
|
+
"new uuid",
|
|
9293
|
+
"create uuid",
|
|
9294
|
+
"guid"
|
|
9295
|
+
],
|
|
9092
9296
|
"fields": {},
|
|
9093
9297
|
"command": "echo 'Use dev handler'",
|
|
9094
9298
|
"execution": "local",
|
|
9095
9299
|
"requiresConfirmation": false,
|
|
9096
9300
|
"riskLevel": "low",
|
|
9097
|
-
"examples": [
|
|
9301
|
+
"examples": [
|
|
9302
|
+
"generate uuid",
|
|
9303
|
+
"random uuid",
|
|
9304
|
+
"give me a uuid"
|
|
9305
|
+
]
|
|
9098
9306
|
},
|
|
9099
9307
|
{
|
|
9100
9308
|
"name": "dev.timestamp",
|
|
9101
9309
|
"description": "Convert between Unix timestamps and human-readable dates",
|
|
9102
|
-
"synonyms": [
|
|
9103
|
-
|
|
9310
|
+
"synonyms": [
|
|
9311
|
+
"convert timestamp",
|
|
9312
|
+
"unix time",
|
|
9313
|
+
"epoch time",
|
|
9314
|
+
"timestamp to date",
|
|
9315
|
+
"date to timestamp",
|
|
9316
|
+
"unix timestamp"
|
|
9317
|
+
],
|
|
9318
|
+
"fields": {
|
|
9319
|
+
"input": {
|
|
9320
|
+
"type": "string",
|
|
9321
|
+
"required": true
|
|
9322
|
+
}
|
|
9323
|
+
},
|
|
9104
9324
|
"command": "echo 'Use dev handler'",
|
|
9105
9325
|
"execution": "local",
|
|
9106
9326
|
"requiresConfirmation": false,
|
|
9107
9327
|
"riskLevel": "low",
|
|
9108
|
-
"examples": [
|
|
9328
|
+
"examples": [
|
|
9329
|
+
"convert timestamp 1700000000",
|
|
9330
|
+
"unix time to date",
|
|
9331
|
+
"what time is 1700000000"
|
|
9332
|
+
]
|
|
9109
9333
|
},
|
|
9110
9334
|
{
|
|
9111
9335
|
"name": "dev.cheatsheet",
|
|
@@ -9168,117 +9392,288 @@
|
|
|
9168
9392
|
{
|
|
9169
9393
|
"name": "timer.start",
|
|
9170
9394
|
"description": "Start a countdown timer or reminder",
|
|
9171
|
-
"synonyms": [
|
|
9395
|
+
"synonyms": [
|
|
9396
|
+
"remind me",
|
|
9397
|
+
"set timer",
|
|
9398
|
+
"timer",
|
|
9399
|
+
"pomodoro",
|
|
9400
|
+
"countdown",
|
|
9401
|
+
"alarm",
|
|
9402
|
+
"start timer",
|
|
9403
|
+
"remind"
|
|
9404
|
+
],
|
|
9172
9405
|
"fields": {
|
|
9173
|
-
"minutes": {
|
|
9174
|
-
|
|
9406
|
+
"minutes": {
|
|
9407
|
+
"type": "number",
|
|
9408
|
+
"required": true
|
|
9409
|
+
},
|
|
9410
|
+
"label": {
|
|
9411
|
+
"type": "string",
|
|
9412
|
+
"required": false
|
|
9413
|
+
}
|
|
9175
9414
|
},
|
|
9176
9415
|
"command": "echo 'Use timer handler'",
|
|
9177
9416
|
"execution": "local",
|
|
9178
9417
|
"requiresConfirmation": false,
|
|
9179
9418
|
"riskLevel": "low",
|
|
9180
|
-
"examples": [
|
|
9419
|
+
"examples": [
|
|
9420
|
+
"remind me in 10 minutes",
|
|
9421
|
+
"set timer for 25 min",
|
|
9422
|
+
"pomodoro",
|
|
9423
|
+
"start 5 min timer"
|
|
9424
|
+
]
|
|
9181
9425
|
},
|
|
9182
9426
|
{
|
|
9183
9427
|
"name": "timer.list",
|
|
9184
9428
|
"description": "Show active timers",
|
|
9185
|
-
"synonyms": [
|
|
9429
|
+
"synonyms": [
|
|
9430
|
+
"show timers",
|
|
9431
|
+
"active timers",
|
|
9432
|
+
"list timers",
|
|
9433
|
+
"my timers"
|
|
9434
|
+
],
|
|
9186
9435
|
"fields": {},
|
|
9187
9436
|
"command": "echo 'Use timer handler'",
|
|
9188
9437
|
"execution": "local",
|
|
9189
9438
|
"requiresConfirmation": false,
|
|
9190
9439
|
"riskLevel": "low",
|
|
9191
|
-
"examples": [
|
|
9440
|
+
"examples": [
|
|
9441
|
+
"show timers",
|
|
9442
|
+
"active timers",
|
|
9443
|
+
"list timers"
|
|
9444
|
+
]
|
|
9192
9445
|
},
|
|
9193
9446
|
{
|
|
9194
9447
|
"name": "timer.cancel",
|
|
9195
9448
|
"description": "Cancel an active timer",
|
|
9196
|
-
"synonyms": [
|
|
9449
|
+
"synonyms": [
|
|
9450
|
+
"cancel timer",
|
|
9451
|
+
"stop timer",
|
|
9452
|
+
"remove timer",
|
|
9453
|
+
"delete timer",
|
|
9454
|
+
"clear timer"
|
|
9455
|
+
],
|
|
9197
9456
|
"fields": {
|
|
9198
|
-
"id": {
|
|
9457
|
+
"id": {
|
|
9458
|
+
"type": "number",
|
|
9459
|
+
"required": false
|
|
9460
|
+
}
|
|
9199
9461
|
},
|
|
9200
9462
|
"command": "echo 'Use timer handler'",
|
|
9201
9463
|
"execution": "local",
|
|
9202
9464
|
"requiresConfirmation": false,
|
|
9203
9465
|
"riskLevel": "low",
|
|
9204
|
-
"examples": [
|
|
9466
|
+
"examples": [
|
|
9467
|
+
"cancel timer",
|
|
9468
|
+
"cancel timer 1",
|
|
9469
|
+
"stop timer"
|
|
9470
|
+
]
|
|
9205
9471
|
},
|
|
9206
9472
|
{
|
|
9207
9473
|
"name": "bookmark.save",
|
|
9208
9474
|
"description": "Save a command as a bookmark",
|
|
9209
|
-
"synonyms": [
|
|
9475
|
+
"synonyms": [
|
|
9476
|
+
"bookmark this",
|
|
9477
|
+
"save bookmark",
|
|
9478
|
+
"add bookmark",
|
|
9479
|
+
"save this command"
|
|
9480
|
+
],
|
|
9210
9481
|
"fields": {
|
|
9211
|
-
"name": {
|
|
9212
|
-
|
|
9482
|
+
"name": {
|
|
9483
|
+
"type": "string",
|
|
9484
|
+
"required": true
|
|
9485
|
+
},
|
|
9486
|
+
"command": {
|
|
9487
|
+
"type": "string",
|
|
9488
|
+
"required": false
|
|
9489
|
+
}
|
|
9213
9490
|
},
|
|
9214
9491
|
"command": "echo 'Use bookmark handler'",
|
|
9215
9492
|
"execution": "local",
|
|
9216
9493
|
"requiresConfirmation": false,
|
|
9217
9494
|
"riskLevel": "low",
|
|
9218
|
-
"examples": [
|
|
9495
|
+
"examples": [
|
|
9496
|
+
"bookmark this as deploy",
|
|
9497
|
+
"save this command as deploy",
|
|
9498
|
+
"add bookmark restart-prod"
|
|
9499
|
+
]
|
|
9219
9500
|
},
|
|
9220
9501
|
{
|
|
9221
9502
|
"name": "bookmark.list",
|
|
9222
9503
|
"description": "Show all saved bookmarks",
|
|
9223
|
-
"synonyms": [
|
|
9504
|
+
"synonyms": [
|
|
9505
|
+
"show bookmarks",
|
|
9506
|
+
"my bookmarks",
|
|
9507
|
+
"list bookmarks"
|
|
9508
|
+
],
|
|
9224
9509
|
"fields": {},
|
|
9225
9510
|
"command": "echo 'Use bookmark handler'",
|
|
9226
9511
|
"execution": "local",
|
|
9227
9512
|
"requiresConfirmation": false,
|
|
9228
9513
|
"riskLevel": "low",
|
|
9229
|
-
"examples": [
|
|
9514
|
+
"examples": [
|
|
9515
|
+
"show bookmarks",
|
|
9516
|
+
"my bookmarks",
|
|
9517
|
+
"list bookmarks"
|
|
9518
|
+
]
|
|
9230
9519
|
},
|
|
9231
9520
|
{
|
|
9232
9521
|
"name": "bookmark.run",
|
|
9233
9522
|
"description": "Run a saved bookmark by name",
|
|
9234
|
-
"synonyms": [
|
|
9523
|
+
"synonyms": [
|
|
9524
|
+
"run bookmark",
|
|
9525
|
+
"execute bookmark",
|
|
9526
|
+
"use bookmark"
|
|
9527
|
+
],
|
|
9235
9528
|
"fields": {
|
|
9236
|
-
"name": {
|
|
9529
|
+
"name": {
|
|
9530
|
+
"type": "string",
|
|
9531
|
+
"required": true
|
|
9532
|
+
}
|
|
9237
9533
|
},
|
|
9238
9534
|
"command": "echo 'Use bookmark handler'",
|
|
9239
9535
|
"execution": "local",
|
|
9240
9536
|
"requiresConfirmation": false,
|
|
9241
9537
|
"riskLevel": "low",
|
|
9242
|
-
"examples": [
|
|
9538
|
+
"examples": [
|
|
9539
|
+
"run bookmark deploy",
|
|
9540
|
+
"use bookmark restart-prod"
|
|
9541
|
+
]
|
|
9243
9542
|
},
|
|
9244
9543
|
{
|
|
9245
9544
|
"name": "snippet.save",
|
|
9246
9545
|
"description": "Save a code snippet",
|
|
9247
|
-
"synonyms": [
|
|
9546
|
+
"synonyms": [
|
|
9547
|
+
"save snippet",
|
|
9548
|
+
"save this as snippet",
|
|
9549
|
+
"add snippet",
|
|
9550
|
+
"store snippet"
|
|
9551
|
+
],
|
|
9248
9552
|
"fields": {
|
|
9249
|
-
"name": {
|
|
9250
|
-
|
|
9251
|
-
|
|
9553
|
+
"name": {
|
|
9554
|
+
"type": "string",
|
|
9555
|
+
"required": true
|
|
9556
|
+
},
|
|
9557
|
+
"code": {
|
|
9558
|
+
"type": "string",
|
|
9559
|
+
"required": false
|
|
9560
|
+
},
|
|
9561
|
+
"language": {
|
|
9562
|
+
"type": "string",
|
|
9563
|
+
"required": false
|
|
9564
|
+
}
|
|
9252
9565
|
},
|
|
9253
9566
|
"command": "echo 'Use snippet handler'",
|
|
9254
9567
|
"execution": "local",
|
|
9255
9568
|
"requiresConfirmation": false,
|
|
9256
9569
|
"riskLevel": "low",
|
|
9257
|
-
"examples": [
|
|
9570
|
+
"examples": [
|
|
9571
|
+
"save this as snippet backup",
|
|
9572
|
+
"save snippet deploy-check"
|
|
9573
|
+
]
|
|
9258
9574
|
},
|
|
9259
9575
|
{
|
|
9260
9576
|
"name": "snippet.list",
|
|
9261
9577
|
"description": "List saved code snippets",
|
|
9262
|
-
"synonyms": [
|
|
9578
|
+
"synonyms": [
|
|
9579
|
+
"show snippets",
|
|
9580
|
+
"my snippets",
|
|
9581
|
+
"list snippets"
|
|
9582
|
+
],
|
|
9263
9583
|
"fields": {},
|
|
9264
9584
|
"command": "echo 'Use snippet handler'",
|
|
9265
9585
|
"execution": "local",
|
|
9266
9586
|
"requiresConfirmation": false,
|
|
9267
9587
|
"riskLevel": "low",
|
|
9268
|
-
"examples": [
|
|
9588
|
+
"examples": [
|
|
9589
|
+
"show snippets",
|
|
9590
|
+
"my snippets",
|
|
9591
|
+
"list snippets"
|
|
9592
|
+
]
|
|
9269
9593
|
},
|
|
9270
9594
|
{
|
|
9271
9595
|
"name": "snippet.run",
|
|
9272
9596
|
"description": "Run a saved code snippet",
|
|
9273
|
-
"synonyms": [
|
|
9597
|
+
"synonyms": [
|
|
9598
|
+
"run snippet",
|
|
9599
|
+
"execute snippet",
|
|
9600
|
+
"use snippet"
|
|
9601
|
+
],
|
|
9274
9602
|
"fields": {
|
|
9275
|
-
"name": {
|
|
9603
|
+
"name": {
|
|
9604
|
+
"type": "string",
|
|
9605
|
+
"required": true
|
|
9606
|
+
}
|
|
9276
9607
|
},
|
|
9277
9608
|
"command": "echo 'Use snippet handler'",
|
|
9278
9609
|
"execution": "local",
|
|
9279
9610
|
"requiresConfirmation": false,
|
|
9280
9611
|
"riskLevel": "low",
|
|
9281
|
-
"examples": [
|
|
9612
|
+
"examples": [
|
|
9613
|
+
"run snippet backup",
|
|
9614
|
+
"execute snippet deploy-check"
|
|
9615
|
+
]
|
|
9616
|
+
},
|
|
9617
|
+
{
|
|
9618
|
+
"name": "files.organize",
|
|
9619
|
+
"description": "Organize files in current directory into categorized folders using AI",
|
|
9620
|
+
"synonyms": [
|
|
9621
|
+
"organize files",
|
|
9622
|
+
"sort files",
|
|
9623
|
+
"tidy up files",
|
|
9624
|
+
"categorize files",
|
|
9625
|
+
"organize this folder",
|
|
9626
|
+
"clean up downloads",
|
|
9627
|
+
"organize my downloads"
|
|
9628
|
+
],
|
|
9629
|
+
"examples": [
|
|
9630
|
+
"organize these files",
|
|
9631
|
+
"sort my downloads",
|
|
9632
|
+
"tidy up this folder"
|
|
9633
|
+
],
|
|
9634
|
+
"fields": {},
|
|
9635
|
+
"command": "echo 'Use handler'",
|
|
9636
|
+
"execution": "local",
|
|
9637
|
+
"requiresConfirmation": true,
|
|
9638
|
+
"riskLevel": "medium"
|
|
9639
|
+
},
|
|
9640
|
+
{
|
|
9641
|
+
"name": "files.place",
|
|
9642
|
+
"description": "Suggest where a file should go based on existing directory structure",
|
|
9643
|
+
"synonyms": [
|
|
9644
|
+
"where should I put this",
|
|
9645
|
+
"where does this go",
|
|
9646
|
+
"where does this file belong",
|
|
9647
|
+
"file this"
|
|
9648
|
+
],
|
|
9649
|
+
"examples": [
|
|
9650
|
+
"where should I put invoice.pdf",
|
|
9651
|
+
"where does this go"
|
|
9652
|
+
],
|
|
9653
|
+
"fields": {},
|
|
9654
|
+
"command": "echo 'Use handler'",
|
|
9655
|
+
"execution": "local",
|
|
9656
|
+
"requiresConfirmation": true,
|
|
9657
|
+
"riskLevel": "medium"
|
|
9658
|
+
},
|
|
9659
|
+
{
|
|
9660
|
+
"name": "ollama.uninstall",
|
|
9661
|
+
"description": "Uninstall Ollama and optionally remove models",
|
|
9662
|
+
"synonyms": [
|
|
9663
|
+
"uninstall ollama",
|
|
9664
|
+
"remove ollama",
|
|
9665
|
+
"delete ollama",
|
|
9666
|
+
"get rid of ollama"
|
|
9667
|
+
],
|
|
9668
|
+
"fields": {},
|
|
9669
|
+
"command": "echo 'Use handler'",
|
|
9670
|
+
"execution": "local",
|
|
9671
|
+
"requiresConfirmation": true,
|
|
9672
|
+
"riskLevel": "high",
|
|
9673
|
+
"examples": [
|
|
9674
|
+
"uninstall ollama",
|
|
9675
|
+
"remove ollama completely"
|
|
9676
|
+
]
|
|
9282
9677
|
}
|
|
9283
9678
|
]
|
|
9284
9679
|
}
|