@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
- "commands": [
236
- {
237
- "name": "submit-vendor",
238
- "description": "Request a new vendor",
239
- "method": "submit-vendor-request"
240
- }
241
- ],
242
- "loadingMessage": "Processing your request..."
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
- "commands": [
257
- {
258
- "command": "/submit",
259
- "description": "Submit a vendor request",
260
- "method": "submit-vendor-request"
261
- }
262
- ],
263
- "defaultMethod": "handle-message"
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
- "jobs": [
278
- {
279
- "schedule": "0 9 * * 5",
280
- "method": "process-weekly-payments",
281
- "description": "Process approved invoices every Friday at 9am"
282
- },
283
- {
284
- "schedule": "*/30 * * * *",
285
- "method": "sync-vendor-status",
286
- "description": "Sync vendor statuses every 30 minutes"
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
- "endpoints": [
303
- {
304
- "method": "handle-payment-webhook",
305
- "description": "Stripe payment notifications",
306
- "secret": "whk_abc123..."
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
- "method": "handle-inbound-email"
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
- "methods": ["submit-vendor-request", "list-vendors"]
348
+ "mcp": {
349
+ "methods": ["submit-vendor-request", "list-vendors"]
350
+ }
339
351
  }
340
352
  ```
341
353
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.145",
3
+ "version": "0.1.146",
4
4
  "description": "MindStudio coding agent",
5
5
  "repository": {
6
6
  "type": "git",