@mindstudio-ai/remy 0.1.145 → 0.1.146
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.
|
@@ -232,14 +232,16 @@ Slash commands that invoke methods.
|
|
|
232
232
|
|
|
233
233
|
```json
|
|
234
234
|
{
|
|
235
|
-
"
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
235
|
+
"discord": {
|
|
236
|
+
"commands": [
|
|
237
|
+
{
|
|
238
|
+
"name": "submit-vendor",
|
|
239
|
+
"description": "Request a new vendor",
|
|
240
|
+
"method": "submit-vendor-request"
|
|
241
|
+
}
|
|
242
|
+
],
|
|
243
|
+
"loadingMessage": "Processing your request..."
|
|
244
|
+
}
|
|
243
245
|
}
|
|
244
246
|
```
|
|
245
247
|
|
|
@@ -253,14 +255,16 @@ Bot commands and message handling.
|
|
|
253
255
|
|
|
254
256
|
```json
|
|
255
257
|
{
|
|
256
|
-
"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
258
|
+
"telegram": {
|
|
259
|
+
"commands": [
|
|
260
|
+
{
|
|
261
|
+
"command": "/submit",
|
|
262
|
+
"description": "Submit a vendor request",
|
|
263
|
+
"method": "submit-vendor-request"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"defaultMethod": "handle-message"
|
|
267
|
+
}
|
|
264
268
|
}
|
|
265
269
|
```
|
|
266
270
|
|
|
@@ -274,18 +278,20 @@ Scheduled method execution.
|
|
|
274
278
|
|
|
275
279
|
```json
|
|
276
280
|
{
|
|
277
|
-
"
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
281
|
+
"cron": {
|
|
282
|
+
"jobs": [
|
|
283
|
+
{
|
|
284
|
+
"schedule": "0 9 * * 5",
|
|
285
|
+
"method": "process-weekly-payments",
|
|
286
|
+
"description": "Process approved invoices every Friday at 9am"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"schedule": "*/30 * * * *",
|
|
290
|
+
"method": "sync-vendor-status",
|
|
291
|
+
"description": "Sync vendor statuses every 30 minutes"
|
|
292
|
+
}
|
|
293
|
+
]
|
|
294
|
+
}
|
|
289
295
|
}
|
|
290
296
|
```
|
|
291
297
|
|
|
@@ -299,13 +305,15 @@ Inbound HTTP endpoints that invoke methods.
|
|
|
299
305
|
|
|
300
306
|
```json
|
|
301
307
|
{
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
308
|
+
"webhook": {
|
|
309
|
+
"endpoints": [
|
|
310
|
+
{
|
|
311
|
+
"method": "handle-payment-webhook",
|
|
312
|
+
"description": "Stripe payment notifications",
|
|
313
|
+
"secret": "whk_abc123..."
|
|
314
|
+
}
|
|
315
|
+
]
|
|
316
|
+
}
|
|
309
317
|
}
|
|
310
318
|
```
|
|
311
319
|
|
|
@@ -321,7 +329,9 @@ Inbound email triggers.
|
|
|
321
329
|
|
|
322
330
|
```json
|
|
323
331
|
{
|
|
324
|
-
"
|
|
332
|
+
"email": {
|
|
333
|
+
"method": "handle-inbound-email"
|
|
334
|
+
}
|
|
325
335
|
}
|
|
326
336
|
```
|
|
327
337
|
|
|
@@ -335,7 +345,9 @@ Expose methods as AI tools.
|
|
|
335
345
|
|
|
336
346
|
```json
|
|
337
347
|
{
|
|
338
|
-
"
|
|
348
|
+
"mcp": {
|
|
349
|
+
"methods": ["submit-vendor-request", "list-vendors"]
|
|
350
|
+
}
|
|
339
351
|
}
|
|
340
352
|
```
|
|
341
353
|
|