@forge/manifest 12.9.0-next.3 → 12.9.0-next.5
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/CHANGELOG.md +14 -0
- package/out/schema/manifest-schema.json +45 -1
- package/out/schema/manifest.d.ts +489 -1
- package/out/text/errors.d.ts +2 -1
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +3 -2
- package/out/types/module-types.d.ts +1 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +1 -0
- package/out/validators/modules-validators/global/validate-global-ui.d.ts.map +1 -1
- package/out/validators/modules-validators/global/validate-global-ui.js +3 -3
- package/out/validators/modules-validators/rovo/index.d.ts.map +1 -1
- package/out/validators/modules-validators/rovo/index.js +2 -0
- package/out/validators/modules-validators/rovo/validate-rovo-mcp-actions.d.ts +4 -0
- package/out/validators/modules-validators/rovo/validate-rovo-mcp-actions.d.ts.map +1 -0
- package/out/validators/modules-validators/rovo/validate-rovo-mcp-actions.js +29 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 12.9.0-next.5
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8197e66: rename shards to targets in overrides
|
|
8
|
+
|
|
9
|
+
## 12.9.0-next.4
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 4493006: Update validation for global:ui
|
|
14
|
+
- enforce app.compatibility
|
|
15
|
+
- remove installationTarget check
|
|
16
|
+
|
|
3
17
|
## 12.9.0-next.3
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -31175,6 +31175,50 @@
|
|
|
31175
31175
|
},
|
|
31176
31176
|
"minItems": 1
|
|
31177
31177
|
},
|
|
31178
|
+
"rovo:mcp": {
|
|
31179
|
+
"type": "array",
|
|
31180
|
+
"items": {
|
|
31181
|
+
"type": "object",
|
|
31182
|
+
"additionalProperties": false,
|
|
31183
|
+
"required": [
|
|
31184
|
+
"name",
|
|
31185
|
+
"tools",
|
|
31186
|
+
"key"
|
|
31187
|
+
],
|
|
31188
|
+
"properties": {
|
|
31189
|
+
"name": {
|
|
31190
|
+
"description": "The human-readable name of the MCP server.",
|
|
31191
|
+
"type": "string",
|
|
31192
|
+
"minLength": 1,
|
|
31193
|
+
"maxLength": 255
|
|
31194
|
+
},
|
|
31195
|
+
"tools": {
|
|
31196
|
+
"description": "A list of actions that will be exposed by the MCP server.",
|
|
31197
|
+
"type": "array",
|
|
31198
|
+
"minItems": 1,
|
|
31199
|
+
"maxItems": 20,
|
|
31200
|
+
"uniqueItems": true,
|
|
31201
|
+
"items": {
|
|
31202
|
+
"description": "The key of an action extension in your manifest.",
|
|
31203
|
+
"maxLength": 255,
|
|
31204
|
+
"minLength": 1,
|
|
31205
|
+
"pattern": "^[a-zA-Z0-9-._]+$",
|
|
31206
|
+
"title": "ActionExtensionKey",
|
|
31207
|
+
"type": "string"
|
|
31208
|
+
}
|
|
31209
|
+
},
|
|
31210
|
+
"key": {
|
|
31211
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
31212
|
+
}
|
|
31213
|
+
},
|
|
31214
|
+
"not": {
|
|
31215
|
+
"required": [
|
|
31216
|
+
"unlicensedAccess"
|
|
31217
|
+
]
|
|
31218
|
+
}
|
|
31219
|
+
},
|
|
31220
|
+
"minItems": 1
|
|
31221
|
+
},
|
|
31178
31222
|
"graph:smartLink": {
|
|
31179
31223
|
"type": "array",
|
|
31180
31224
|
"items": {
|
|
@@ -33362,7 +33406,7 @@
|
|
|
33362
33406
|
]
|
|
33363
33407
|
}
|
|
33364
33408
|
},
|
|
33365
|
-
"
|
|
33409
|
+
"targets": {
|
|
33366
33410
|
"type": "array",
|
|
33367
33411
|
"minItems": 1,
|
|
33368
33412
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -515,6 +515,10 @@ export type Endpoint1 = string;
|
|
|
515
515
|
* Whether the endpoint supports streaming capability.
|
|
516
516
|
*/
|
|
517
517
|
export type Streaming = boolean;
|
|
518
|
+
/**
|
|
519
|
+
* The key of an action extension in your manifest.
|
|
520
|
+
*/
|
|
521
|
+
export type ActionExtensionKey2 = string;
|
|
518
522
|
/**
|
|
519
523
|
* The domains that this object provider should match.
|
|
520
524
|
*/
|
|
@@ -824,7 +828,7 @@ export type OverriddenServices = {
|
|
|
824
828
|
export type ManifestOverrides = {
|
|
825
829
|
applyTo: {
|
|
826
830
|
environmentTypes?: ['DEVELOPMENT' | 'STAGING' | 'PRODUCTION', ...('DEVELOPMENT' | 'STAGING' | 'PRODUCTION')[]];
|
|
827
|
-
|
|
831
|
+
targets?: [string, ...string[]];
|
|
828
832
|
};
|
|
829
833
|
value: {
|
|
830
834
|
services?: OverriddenServices;
|
|
@@ -25294,6 +25298,490 @@ export interface Modules {
|
|
|
25294
25298
|
[k: string]: unknown;
|
|
25295
25299
|
}[]
|
|
25296
25300
|
];
|
|
25301
|
+
'rovo:mcp'?: [
|
|
25302
|
+
{
|
|
25303
|
+
/**
|
|
25304
|
+
* The human-readable name of the MCP server.
|
|
25305
|
+
*/
|
|
25306
|
+
name: string;
|
|
25307
|
+
/**
|
|
25308
|
+
* A list of actions that will be exposed by the MCP server.
|
|
25309
|
+
*/
|
|
25310
|
+
tools:
|
|
25311
|
+
| [ActionExtensionKey2]
|
|
25312
|
+
| [ActionExtensionKey2, ActionExtensionKey2]
|
|
25313
|
+
| [ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2]
|
|
25314
|
+
| [ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2]
|
|
25315
|
+
| [ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2]
|
|
25316
|
+
| [
|
|
25317
|
+
ActionExtensionKey2,
|
|
25318
|
+
ActionExtensionKey2,
|
|
25319
|
+
ActionExtensionKey2,
|
|
25320
|
+
ActionExtensionKey2,
|
|
25321
|
+
ActionExtensionKey2,
|
|
25322
|
+
ActionExtensionKey2
|
|
25323
|
+
]
|
|
25324
|
+
| [
|
|
25325
|
+
ActionExtensionKey2,
|
|
25326
|
+
ActionExtensionKey2,
|
|
25327
|
+
ActionExtensionKey2,
|
|
25328
|
+
ActionExtensionKey2,
|
|
25329
|
+
ActionExtensionKey2,
|
|
25330
|
+
ActionExtensionKey2,
|
|
25331
|
+
ActionExtensionKey2
|
|
25332
|
+
]
|
|
25333
|
+
| [
|
|
25334
|
+
ActionExtensionKey2,
|
|
25335
|
+
ActionExtensionKey2,
|
|
25336
|
+
ActionExtensionKey2,
|
|
25337
|
+
ActionExtensionKey2,
|
|
25338
|
+
ActionExtensionKey2,
|
|
25339
|
+
ActionExtensionKey2,
|
|
25340
|
+
ActionExtensionKey2,
|
|
25341
|
+
ActionExtensionKey2
|
|
25342
|
+
]
|
|
25343
|
+
| [
|
|
25344
|
+
ActionExtensionKey2,
|
|
25345
|
+
ActionExtensionKey2,
|
|
25346
|
+
ActionExtensionKey2,
|
|
25347
|
+
ActionExtensionKey2,
|
|
25348
|
+
ActionExtensionKey2,
|
|
25349
|
+
ActionExtensionKey2,
|
|
25350
|
+
ActionExtensionKey2,
|
|
25351
|
+
ActionExtensionKey2,
|
|
25352
|
+
ActionExtensionKey2
|
|
25353
|
+
]
|
|
25354
|
+
| [
|
|
25355
|
+
ActionExtensionKey2,
|
|
25356
|
+
ActionExtensionKey2,
|
|
25357
|
+
ActionExtensionKey2,
|
|
25358
|
+
ActionExtensionKey2,
|
|
25359
|
+
ActionExtensionKey2,
|
|
25360
|
+
ActionExtensionKey2,
|
|
25361
|
+
ActionExtensionKey2,
|
|
25362
|
+
ActionExtensionKey2,
|
|
25363
|
+
ActionExtensionKey2,
|
|
25364
|
+
ActionExtensionKey2
|
|
25365
|
+
]
|
|
25366
|
+
| [
|
|
25367
|
+
ActionExtensionKey2,
|
|
25368
|
+
ActionExtensionKey2,
|
|
25369
|
+
ActionExtensionKey2,
|
|
25370
|
+
ActionExtensionKey2,
|
|
25371
|
+
ActionExtensionKey2,
|
|
25372
|
+
ActionExtensionKey2,
|
|
25373
|
+
ActionExtensionKey2,
|
|
25374
|
+
ActionExtensionKey2,
|
|
25375
|
+
ActionExtensionKey2,
|
|
25376
|
+
ActionExtensionKey2,
|
|
25377
|
+
ActionExtensionKey2
|
|
25378
|
+
]
|
|
25379
|
+
| [
|
|
25380
|
+
ActionExtensionKey2,
|
|
25381
|
+
ActionExtensionKey2,
|
|
25382
|
+
ActionExtensionKey2,
|
|
25383
|
+
ActionExtensionKey2,
|
|
25384
|
+
ActionExtensionKey2,
|
|
25385
|
+
ActionExtensionKey2,
|
|
25386
|
+
ActionExtensionKey2,
|
|
25387
|
+
ActionExtensionKey2,
|
|
25388
|
+
ActionExtensionKey2,
|
|
25389
|
+
ActionExtensionKey2,
|
|
25390
|
+
ActionExtensionKey2,
|
|
25391
|
+
ActionExtensionKey2
|
|
25392
|
+
]
|
|
25393
|
+
| [
|
|
25394
|
+
ActionExtensionKey2,
|
|
25395
|
+
ActionExtensionKey2,
|
|
25396
|
+
ActionExtensionKey2,
|
|
25397
|
+
ActionExtensionKey2,
|
|
25398
|
+
ActionExtensionKey2,
|
|
25399
|
+
ActionExtensionKey2,
|
|
25400
|
+
ActionExtensionKey2,
|
|
25401
|
+
ActionExtensionKey2,
|
|
25402
|
+
ActionExtensionKey2,
|
|
25403
|
+
ActionExtensionKey2,
|
|
25404
|
+
ActionExtensionKey2,
|
|
25405
|
+
ActionExtensionKey2,
|
|
25406
|
+
ActionExtensionKey2
|
|
25407
|
+
]
|
|
25408
|
+
| [
|
|
25409
|
+
ActionExtensionKey2,
|
|
25410
|
+
ActionExtensionKey2,
|
|
25411
|
+
ActionExtensionKey2,
|
|
25412
|
+
ActionExtensionKey2,
|
|
25413
|
+
ActionExtensionKey2,
|
|
25414
|
+
ActionExtensionKey2,
|
|
25415
|
+
ActionExtensionKey2,
|
|
25416
|
+
ActionExtensionKey2,
|
|
25417
|
+
ActionExtensionKey2,
|
|
25418
|
+
ActionExtensionKey2,
|
|
25419
|
+
ActionExtensionKey2,
|
|
25420
|
+
ActionExtensionKey2,
|
|
25421
|
+
ActionExtensionKey2,
|
|
25422
|
+
ActionExtensionKey2
|
|
25423
|
+
]
|
|
25424
|
+
| [
|
|
25425
|
+
ActionExtensionKey2,
|
|
25426
|
+
ActionExtensionKey2,
|
|
25427
|
+
ActionExtensionKey2,
|
|
25428
|
+
ActionExtensionKey2,
|
|
25429
|
+
ActionExtensionKey2,
|
|
25430
|
+
ActionExtensionKey2,
|
|
25431
|
+
ActionExtensionKey2,
|
|
25432
|
+
ActionExtensionKey2,
|
|
25433
|
+
ActionExtensionKey2,
|
|
25434
|
+
ActionExtensionKey2,
|
|
25435
|
+
ActionExtensionKey2,
|
|
25436
|
+
ActionExtensionKey2,
|
|
25437
|
+
ActionExtensionKey2,
|
|
25438
|
+
ActionExtensionKey2,
|
|
25439
|
+
ActionExtensionKey2
|
|
25440
|
+
]
|
|
25441
|
+
| [
|
|
25442
|
+
ActionExtensionKey2,
|
|
25443
|
+
ActionExtensionKey2,
|
|
25444
|
+
ActionExtensionKey2,
|
|
25445
|
+
ActionExtensionKey2,
|
|
25446
|
+
ActionExtensionKey2,
|
|
25447
|
+
ActionExtensionKey2,
|
|
25448
|
+
ActionExtensionKey2,
|
|
25449
|
+
ActionExtensionKey2,
|
|
25450
|
+
ActionExtensionKey2,
|
|
25451
|
+
ActionExtensionKey2,
|
|
25452
|
+
ActionExtensionKey2,
|
|
25453
|
+
ActionExtensionKey2,
|
|
25454
|
+
ActionExtensionKey2,
|
|
25455
|
+
ActionExtensionKey2,
|
|
25456
|
+
ActionExtensionKey2,
|
|
25457
|
+
ActionExtensionKey2
|
|
25458
|
+
]
|
|
25459
|
+
| [
|
|
25460
|
+
ActionExtensionKey2,
|
|
25461
|
+
ActionExtensionKey2,
|
|
25462
|
+
ActionExtensionKey2,
|
|
25463
|
+
ActionExtensionKey2,
|
|
25464
|
+
ActionExtensionKey2,
|
|
25465
|
+
ActionExtensionKey2,
|
|
25466
|
+
ActionExtensionKey2,
|
|
25467
|
+
ActionExtensionKey2,
|
|
25468
|
+
ActionExtensionKey2,
|
|
25469
|
+
ActionExtensionKey2,
|
|
25470
|
+
ActionExtensionKey2,
|
|
25471
|
+
ActionExtensionKey2,
|
|
25472
|
+
ActionExtensionKey2,
|
|
25473
|
+
ActionExtensionKey2,
|
|
25474
|
+
ActionExtensionKey2,
|
|
25475
|
+
ActionExtensionKey2,
|
|
25476
|
+
ActionExtensionKey2
|
|
25477
|
+
]
|
|
25478
|
+
| [
|
|
25479
|
+
ActionExtensionKey2,
|
|
25480
|
+
ActionExtensionKey2,
|
|
25481
|
+
ActionExtensionKey2,
|
|
25482
|
+
ActionExtensionKey2,
|
|
25483
|
+
ActionExtensionKey2,
|
|
25484
|
+
ActionExtensionKey2,
|
|
25485
|
+
ActionExtensionKey2,
|
|
25486
|
+
ActionExtensionKey2,
|
|
25487
|
+
ActionExtensionKey2,
|
|
25488
|
+
ActionExtensionKey2,
|
|
25489
|
+
ActionExtensionKey2,
|
|
25490
|
+
ActionExtensionKey2,
|
|
25491
|
+
ActionExtensionKey2,
|
|
25492
|
+
ActionExtensionKey2,
|
|
25493
|
+
ActionExtensionKey2,
|
|
25494
|
+
ActionExtensionKey2,
|
|
25495
|
+
ActionExtensionKey2,
|
|
25496
|
+
ActionExtensionKey2
|
|
25497
|
+
]
|
|
25498
|
+
| [
|
|
25499
|
+
ActionExtensionKey2,
|
|
25500
|
+
ActionExtensionKey2,
|
|
25501
|
+
ActionExtensionKey2,
|
|
25502
|
+
ActionExtensionKey2,
|
|
25503
|
+
ActionExtensionKey2,
|
|
25504
|
+
ActionExtensionKey2,
|
|
25505
|
+
ActionExtensionKey2,
|
|
25506
|
+
ActionExtensionKey2,
|
|
25507
|
+
ActionExtensionKey2,
|
|
25508
|
+
ActionExtensionKey2,
|
|
25509
|
+
ActionExtensionKey2,
|
|
25510
|
+
ActionExtensionKey2,
|
|
25511
|
+
ActionExtensionKey2,
|
|
25512
|
+
ActionExtensionKey2,
|
|
25513
|
+
ActionExtensionKey2,
|
|
25514
|
+
ActionExtensionKey2,
|
|
25515
|
+
ActionExtensionKey2,
|
|
25516
|
+
ActionExtensionKey2,
|
|
25517
|
+
ActionExtensionKey2
|
|
25518
|
+
]
|
|
25519
|
+
| [
|
|
25520
|
+
ActionExtensionKey2,
|
|
25521
|
+
ActionExtensionKey2,
|
|
25522
|
+
ActionExtensionKey2,
|
|
25523
|
+
ActionExtensionKey2,
|
|
25524
|
+
ActionExtensionKey2,
|
|
25525
|
+
ActionExtensionKey2,
|
|
25526
|
+
ActionExtensionKey2,
|
|
25527
|
+
ActionExtensionKey2,
|
|
25528
|
+
ActionExtensionKey2,
|
|
25529
|
+
ActionExtensionKey2,
|
|
25530
|
+
ActionExtensionKey2,
|
|
25531
|
+
ActionExtensionKey2,
|
|
25532
|
+
ActionExtensionKey2,
|
|
25533
|
+
ActionExtensionKey2,
|
|
25534
|
+
ActionExtensionKey2,
|
|
25535
|
+
ActionExtensionKey2,
|
|
25536
|
+
ActionExtensionKey2,
|
|
25537
|
+
ActionExtensionKey2,
|
|
25538
|
+
ActionExtensionKey2,
|
|
25539
|
+
ActionExtensionKey2
|
|
25540
|
+
];
|
|
25541
|
+
key: ModuleKeySchema;
|
|
25542
|
+
},
|
|
25543
|
+
...{
|
|
25544
|
+
/**
|
|
25545
|
+
* The human-readable name of the MCP server.
|
|
25546
|
+
*/
|
|
25547
|
+
name: string;
|
|
25548
|
+
/**
|
|
25549
|
+
* A list of actions that will be exposed by the MCP server.
|
|
25550
|
+
*/
|
|
25551
|
+
tools:
|
|
25552
|
+
| [ActionExtensionKey2]
|
|
25553
|
+
| [ActionExtensionKey2, ActionExtensionKey2]
|
|
25554
|
+
| [ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2]
|
|
25555
|
+
| [ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2]
|
|
25556
|
+
| [ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2, ActionExtensionKey2]
|
|
25557
|
+
| [
|
|
25558
|
+
ActionExtensionKey2,
|
|
25559
|
+
ActionExtensionKey2,
|
|
25560
|
+
ActionExtensionKey2,
|
|
25561
|
+
ActionExtensionKey2,
|
|
25562
|
+
ActionExtensionKey2,
|
|
25563
|
+
ActionExtensionKey2
|
|
25564
|
+
]
|
|
25565
|
+
| [
|
|
25566
|
+
ActionExtensionKey2,
|
|
25567
|
+
ActionExtensionKey2,
|
|
25568
|
+
ActionExtensionKey2,
|
|
25569
|
+
ActionExtensionKey2,
|
|
25570
|
+
ActionExtensionKey2,
|
|
25571
|
+
ActionExtensionKey2,
|
|
25572
|
+
ActionExtensionKey2
|
|
25573
|
+
]
|
|
25574
|
+
| [
|
|
25575
|
+
ActionExtensionKey2,
|
|
25576
|
+
ActionExtensionKey2,
|
|
25577
|
+
ActionExtensionKey2,
|
|
25578
|
+
ActionExtensionKey2,
|
|
25579
|
+
ActionExtensionKey2,
|
|
25580
|
+
ActionExtensionKey2,
|
|
25581
|
+
ActionExtensionKey2,
|
|
25582
|
+
ActionExtensionKey2
|
|
25583
|
+
]
|
|
25584
|
+
| [
|
|
25585
|
+
ActionExtensionKey2,
|
|
25586
|
+
ActionExtensionKey2,
|
|
25587
|
+
ActionExtensionKey2,
|
|
25588
|
+
ActionExtensionKey2,
|
|
25589
|
+
ActionExtensionKey2,
|
|
25590
|
+
ActionExtensionKey2,
|
|
25591
|
+
ActionExtensionKey2,
|
|
25592
|
+
ActionExtensionKey2,
|
|
25593
|
+
ActionExtensionKey2
|
|
25594
|
+
]
|
|
25595
|
+
| [
|
|
25596
|
+
ActionExtensionKey2,
|
|
25597
|
+
ActionExtensionKey2,
|
|
25598
|
+
ActionExtensionKey2,
|
|
25599
|
+
ActionExtensionKey2,
|
|
25600
|
+
ActionExtensionKey2,
|
|
25601
|
+
ActionExtensionKey2,
|
|
25602
|
+
ActionExtensionKey2,
|
|
25603
|
+
ActionExtensionKey2,
|
|
25604
|
+
ActionExtensionKey2,
|
|
25605
|
+
ActionExtensionKey2
|
|
25606
|
+
]
|
|
25607
|
+
| [
|
|
25608
|
+
ActionExtensionKey2,
|
|
25609
|
+
ActionExtensionKey2,
|
|
25610
|
+
ActionExtensionKey2,
|
|
25611
|
+
ActionExtensionKey2,
|
|
25612
|
+
ActionExtensionKey2,
|
|
25613
|
+
ActionExtensionKey2,
|
|
25614
|
+
ActionExtensionKey2,
|
|
25615
|
+
ActionExtensionKey2,
|
|
25616
|
+
ActionExtensionKey2,
|
|
25617
|
+
ActionExtensionKey2,
|
|
25618
|
+
ActionExtensionKey2
|
|
25619
|
+
]
|
|
25620
|
+
| [
|
|
25621
|
+
ActionExtensionKey2,
|
|
25622
|
+
ActionExtensionKey2,
|
|
25623
|
+
ActionExtensionKey2,
|
|
25624
|
+
ActionExtensionKey2,
|
|
25625
|
+
ActionExtensionKey2,
|
|
25626
|
+
ActionExtensionKey2,
|
|
25627
|
+
ActionExtensionKey2,
|
|
25628
|
+
ActionExtensionKey2,
|
|
25629
|
+
ActionExtensionKey2,
|
|
25630
|
+
ActionExtensionKey2,
|
|
25631
|
+
ActionExtensionKey2,
|
|
25632
|
+
ActionExtensionKey2
|
|
25633
|
+
]
|
|
25634
|
+
| [
|
|
25635
|
+
ActionExtensionKey2,
|
|
25636
|
+
ActionExtensionKey2,
|
|
25637
|
+
ActionExtensionKey2,
|
|
25638
|
+
ActionExtensionKey2,
|
|
25639
|
+
ActionExtensionKey2,
|
|
25640
|
+
ActionExtensionKey2,
|
|
25641
|
+
ActionExtensionKey2,
|
|
25642
|
+
ActionExtensionKey2,
|
|
25643
|
+
ActionExtensionKey2,
|
|
25644
|
+
ActionExtensionKey2,
|
|
25645
|
+
ActionExtensionKey2,
|
|
25646
|
+
ActionExtensionKey2,
|
|
25647
|
+
ActionExtensionKey2
|
|
25648
|
+
]
|
|
25649
|
+
| [
|
|
25650
|
+
ActionExtensionKey2,
|
|
25651
|
+
ActionExtensionKey2,
|
|
25652
|
+
ActionExtensionKey2,
|
|
25653
|
+
ActionExtensionKey2,
|
|
25654
|
+
ActionExtensionKey2,
|
|
25655
|
+
ActionExtensionKey2,
|
|
25656
|
+
ActionExtensionKey2,
|
|
25657
|
+
ActionExtensionKey2,
|
|
25658
|
+
ActionExtensionKey2,
|
|
25659
|
+
ActionExtensionKey2,
|
|
25660
|
+
ActionExtensionKey2,
|
|
25661
|
+
ActionExtensionKey2,
|
|
25662
|
+
ActionExtensionKey2,
|
|
25663
|
+
ActionExtensionKey2
|
|
25664
|
+
]
|
|
25665
|
+
| [
|
|
25666
|
+
ActionExtensionKey2,
|
|
25667
|
+
ActionExtensionKey2,
|
|
25668
|
+
ActionExtensionKey2,
|
|
25669
|
+
ActionExtensionKey2,
|
|
25670
|
+
ActionExtensionKey2,
|
|
25671
|
+
ActionExtensionKey2,
|
|
25672
|
+
ActionExtensionKey2,
|
|
25673
|
+
ActionExtensionKey2,
|
|
25674
|
+
ActionExtensionKey2,
|
|
25675
|
+
ActionExtensionKey2,
|
|
25676
|
+
ActionExtensionKey2,
|
|
25677
|
+
ActionExtensionKey2,
|
|
25678
|
+
ActionExtensionKey2,
|
|
25679
|
+
ActionExtensionKey2,
|
|
25680
|
+
ActionExtensionKey2
|
|
25681
|
+
]
|
|
25682
|
+
| [
|
|
25683
|
+
ActionExtensionKey2,
|
|
25684
|
+
ActionExtensionKey2,
|
|
25685
|
+
ActionExtensionKey2,
|
|
25686
|
+
ActionExtensionKey2,
|
|
25687
|
+
ActionExtensionKey2,
|
|
25688
|
+
ActionExtensionKey2,
|
|
25689
|
+
ActionExtensionKey2,
|
|
25690
|
+
ActionExtensionKey2,
|
|
25691
|
+
ActionExtensionKey2,
|
|
25692
|
+
ActionExtensionKey2,
|
|
25693
|
+
ActionExtensionKey2,
|
|
25694
|
+
ActionExtensionKey2,
|
|
25695
|
+
ActionExtensionKey2,
|
|
25696
|
+
ActionExtensionKey2,
|
|
25697
|
+
ActionExtensionKey2,
|
|
25698
|
+
ActionExtensionKey2
|
|
25699
|
+
]
|
|
25700
|
+
| [
|
|
25701
|
+
ActionExtensionKey2,
|
|
25702
|
+
ActionExtensionKey2,
|
|
25703
|
+
ActionExtensionKey2,
|
|
25704
|
+
ActionExtensionKey2,
|
|
25705
|
+
ActionExtensionKey2,
|
|
25706
|
+
ActionExtensionKey2,
|
|
25707
|
+
ActionExtensionKey2,
|
|
25708
|
+
ActionExtensionKey2,
|
|
25709
|
+
ActionExtensionKey2,
|
|
25710
|
+
ActionExtensionKey2,
|
|
25711
|
+
ActionExtensionKey2,
|
|
25712
|
+
ActionExtensionKey2,
|
|
25713
|
+
ActionExtensionKey2,
|
|
25714
|
+
ActionExtensionKey2,
|
|
25715
|
+
ActionExtensionKey2,
|
|
25716
|
+
ActionExtensionKey2,
|
|
25717
|
+
ActionExtensionKey2
|
|
25718
|
+
]
|
|
25719
|
+
| [
|
|
25720
|
+
ActionExtensionKey2,
|
|
25721
|
+
ActionExtensionKey2,
|
|
25722
|
+
ActionExtensionKey2,
|
|
25723
|
+
ActionExtensionKey2,
|
|
25724
|
+
ActionExtensionKey2,
|
|
25725
|
+
ActionExtensionKey2,
|
|
25726
|
+
ActionExtensionKey2,
|
|
25727
|
+
ActionExtensionKey2,
|
|
25728
|
+
ActionExtensionKey2,
|
|
25729
|
+
ActionExtensionKey2,
|
|
25730
|
+
ActionExtensionKey2,
|
|
25731
|
+
ActionExtensionKey2,
|
|
25732
|
+
ActionExtensionKey2,
|
|
25733
|
+
ActionExtensionKey2,
|
|
25734
|
+
ActionExtensionKey2,
|
|
25735
|
+
ActionExtensionKey2,
|
|
25736
|
+
ActionExtensionKey2,
|
|
25737
|
+
ActionExtensionKey2
|
|
25738
|
+
]
|
|
25739
|
+
| [
|
|
25740
|
+
ActionExtensionKey2,
|
|
25741
|
+
ActionExtensionKey2,
|
|
25742
|
+
ActionExtensionKey2,
|
|
25743
|
+
ActionExtensionKey2,
|
|
25744
|
+
ActionExtensionKey2,
|
|
25745
|
+
ActionExtensionKey2,
|
|
25746
|
+
ActionExtensionKey2,
|
|
25747
|
+
ActionExtensionKey2,
|
|
25748
|
+
ActionExtensionKey2,
|
|
25749
|
+
ActionExtensionKey2,
|
|
25750
|
+
ActionExtensionKey2,
|
|
25751
|
+
ActionExtensionKey2,
|
|
25752
|
+
ActionExtensionKey2,
|
|
25753
|
+
ActionExtensionKey2,
|
|
25754
|
+
ActionExtensionKey2,
|
|
25755
|
+
ActionExtensionKey2,
|
|
25756
|
+
ActionExtensionKey2,
|
|
25757
|
+
ActionExtensionKey2,
|
|
25758
|
+
ActionExtensionKey2
|
|
25759
|
+
]
|
|
25760
|
+
| [
|
|
25761
|
+
ActionExtensionKey2,
|
|
25762
|
+
ActionExtensionKey2,
|
|
25763
|
+
ActionExtensionKey2,
|
|
25764
|
+
ActionExtensionKey2,
|
|
25765
|
+
ActionExtensionKey2,
|
|
25766
|
+
ActionExtensionKey2,
|
|
25767
|
+
ActionExtensionKey2,
|
|
25768
|
+
ActionExtensionKey2,
|
|
25769
|
+
ActionExtensionKey2,
|
|
25770
|
+
ActionExtensionKey2,
|
|
25771
|
+
ActionExtensionKey2,
|
|
25772
|
+
ActionExtensionKey2,
|
|
25773
|
+
ActionExtensionKey2,
|
|
25774
|
+
ActionExtensionKey2,
|
|
25775
|
+
ActionExtensionKey2,
|
|
25776
|
+
ActionExtensionKey2,
|
|
25777
|
+
ActionExtensionKey2,
|
|
25778
|
+
ActionExtensionKey2,
|
|
25779
|
+
ActionExtensionKey2,
|
|
25780
|
+
ActionExtensionKey2
|
|
25781
|
+
];
|
|
25782
|
+
key: ModuleKeySchema;
|
|
25783
|
+
}[]
|
|
25784
|
+
];
|
|
25297
25785
|
'graph:smartLink'?: [
|
|
25298
25786
|
{
|
|
25299
25787
|
/**
|
package/out/text/errors.d.ts
CHANGED
|
@@ -156,6 +156,7 @@ export declare const errors: {
|
|
|
156
156
|
skillSubdirMissingSkillMD: (module: string, subdirectory: string) => string;
|
|
157
157
|
skillPathUnknownResourceKey: (module: string, resourceKey: string) => string;
|
|
158
158
|
skillPathNotUnique: (module: string, path: string) => string;
|
|
159
|
+
incorrectMcp: (module: string, toolKey: string) => string;
|
|
159
160
|
};
|
|
160
161
|
action: {
|
|
161
162
|
unreferencedAction: (action: string) => string;
|
|
@@ -178,7 +179,7 @@ export declare const errors: {
|
|
|
178
179
|
globalUi: {
|
|
179
180
|
invalidIcon: (icon: string, keyName: string, index: number) => string;
|
|
180
181
|
renderMustBeNative: (keyName: string, index: number) => string;
|
|
181
|
-
|
|
182
|
+
compatibilityRequired: () => string;
|
|
182
183
|
};
|
|
183
184
|
};
|
|
184
185
|
resources: {
|
package/out/text/errors.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../src/text/errors.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../src/text/errors.ts"],"names":[],"mappings":"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"}
|
package/out/text/errors.js
CHANGED
|
@@ -169,7 +169,8 @@ exports.errors = {
|
|
|
169
169
|
skillSubdirNotFound: (module, subdirectory) => `Subdirectory '${subdirectory}' specified in skill ${module} does not exist in the associated resource path.`,
|
|
170
170
|
skillSubdirMissingSkillMD: (module, subdirectory) => `Subdirectory '${subdirectory}' specified in skill ${module} does not contain a SKILL.md file.`,
|
|
171
171
|
skillPathUnknownResourceKey: (module, resourceKey) => `Resource key '${resourceKey}' referenced by skill ${module} not found.`,
|
|
172
|
-
skillPathNotUnique: (module, path) => `Skill ${module} has a duplicate path '${path}'. rovo:skill path values must be unique
|
|
172
|
+
skillPathNotUnique: (module, path) => `Skill ${module} has a duplicate path '${path}'. rovo:skill path values must be unique.`,
|
|
173
|
+
incorrectMcp: (module, toolKey) => `${module} references undefined action module with key '${toolKey}'.`
|
|
173
174
|
},
|
|
174
175
|
action: {
|
|
175
176
|
unreferencedAction: (action) => `Action '${action}' is not referenced by any Rovo agent or automation:actionProvider module.`,
|
|
@@ -192,7 +193,7 @@ exports.errors = {
|
|
|
192
193
|
globalUi: {
|
|
193
194
|
invalidIcon: (icon, keyName, index) => `The icon '${icon}' at index '${index}' for key '${keyName}' needs to be a defined resource of file type svg.`,
|
|
194
195
|
renderMustBeNative: (keyName, index) => `The render property at index '${index}' for key '${keyName}' must be set to 'native' for global:ui modules.`,
|
|
195
|
-
|
|
196
|
+
compatibilityRequired: () => `Apps using the global:ui module must define the app.compatibility property.`
|
|
196
197
|
}
|
|
197
198
|
},
|
|
198
199
|
resources: {
|
|
@@ -199,6 +199,7 @@ export declare enum AllModuleTypes {
|
|
|
199
199
|
GraphConnector = "graph:connector",
|
|
200
200
|
SmartLinks = "graph:smartLink",
|
|
201
201
|
RovoSkill = "rovo:skill",
|
|
202
|
+
RovoMcp = "rovo:mcp",
|
|
202
203
|
DevopsDevelopmentInfoProvider = "devops:developmentInfoProvider",
|
|
203
204
|
DevopsFeatureFlagInfoProvider = "devops:featureFlagInfoProvider",
|
|
204
205
|
DevopsDeploymentInfoProvider = "devops:deploymentInfoProvider",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -203,6 +203,7 @@ var AllModuleTypes;
|
|
|
203
203
|
AllModuleTypes["GraphConnector"] = "graph:connector";
|
|
204
204
|
AllModuleTypes["SmartLinks"] = "graph:smartLink";
|
|
205
205
|
AllModuleTypes["RovoSkill"] = "rovo:skill";
|
|
206
|
+
AllModuleTypes["RovoMcp"] = "rovo:mcp";
|
|
206
207
|
AllModuleTypes["DevopsDevelopmentInfoProvider"] = "devops:developmentInfoProvider";
|
|
207
208
|
AllModuleTypes["DevopsFeatureFlagInfoProvider"] = "devops:featureFlagInfoProvider";
|
|
208
209
|
AllModuleTypes["DevopsDeploymentInfoProvider"] = "devops:deploymentInfoProvider";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-global-ui.d.ts","sourceRoot":"","sources":["../../../../src/validators/modules-validators/global/validate-global-ui.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAExD,OAAO,EAAkB,eAAe,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"validate-global-ui.d.ts","sourceRoot":"","sources":["../../../../src/validators/modules-validators/global/validate-global-ui.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAExD,OAAO,EAAkB,eAAe,EAAE,MAAM,gBAAgB,CAAC;AA+BjE,eAAO,MAAM,gBAAgB,YAAa,OAAO,OAAO,GAAG,sBAAsB,MAAM,EAAE,KAAG,eAAe,EA4D1G,CAAC"}
|
|
@@ -13,12 +13,12 @@ const validateGlobalUi = (modules, app, yamlContentByLine) => {
|
|
|
13
13
|
if (globalUiModules.length === 0) {
|
|
14
14
|
return validationErrors;
|
|
15
15
|
}
|
|
16
|
-
if (app.
|
|
16
|
+
if (!app.compatibility) {
|
|
17
17
|
validationErrors.push({
|
|
18
|
-
message: errorMessages.
|
|
18
|
+
message: errorMessages.compatibilityRequired(),
|
|
19
19
|
reference: text_1.References.Modules,
|
|
20
20
|
level: 'error',
|
|
21
|
-
...(0, utils_1.findPosition)(
|
|
21
|
+
...(0, utils_1.findPosition)('app', yamlContentByLine)
|
|
22
22
|
});
|
|
23
23
|
}
|
|
24
24
|
if (globalUiModules.length > 1) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/validators/modules-validators/rovo/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/validators/modules-validators/rovo/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAS9D,eAAO,MAAM,mBAAmB,YACrB,OAAO,cACJ,SAAS,gBACP,MAAM,sBACA,MAAM,EAAE,KAC3B,eAAe,EAYjB,CAAC"}
|
|
@@ -4,6 +4,7 @@ exports.validateRovoModules = void 0;
|
|
|
4
4
|
const validate_rovo_agent_actions_1 = require("./validate-rovo-agent-actions");
|
|
5
5
|
const validate_unreferenced_actions_1 = require("./validate-unreferenced-actions");
|
|
6
6
|
const validate_rovo_skill_actions_1 = require("./validate-rovo-skill-actions");
|
|
7
|
+
const validate_rovo_mcp_actions_1 = require("./validate-rovo-mcp-actions");
|
|
7
8
|
const validate_undefined_action_name_1 = require("./validate-undefined-action-name");
|
|
8
9
|
const validate_agent_connector_remote_endpoints_1 = require("./validate-agent-connector-remote-endpoints");
|
|
9
10
|
const validate_skill_path_1 = require("./validate-skill-path");
|
|
@@ -12,6 +13,7 @@ const validateRovoModules = (modules, resources, manifestDir, yamlContentByLine)
|
|
|
12
13
|
validationErrors.push(...(0, validate_rovo_agent_actions_1.validateRovoAgentActions)(modules, yamlContentByLine));
|
|
13
14
|
validationErrors.push(...(0, validate_unreferenced_actions_1.validateUnreferencedActions)(modules, yamlContentByLine));
|
|
14
15
|
validationErrors.push(...(0, validate_rovo_skill_actions_1.validateRovoSkillActions)(modules, yamlContentByLine));
|
|
16
|
+
validationErrors.push(...(0, validate_rovo_mcp_actions_1.validateRovoMcpActions)(modules, yamlContentByLine));
|
|
15
17
|
validationErrors.push(...(0, validate_undefined_action_name_1.validateUndefinedActionName)(modules, yamlContentByLine));
|
|
16
18
|
validationErrors.push(...(0, validate_agent_connector_remote_endpoints_1.validateAgentConnectorRemoteEndpoints)(modules, yamlContentByLine));
|
|
17
19
|
validationErrors.push(...(0, validate_skill_path_1.validateSkillPath)(modules, resources, manifestDir, yamlContentByLine));
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ValidationError } from '../../../types';
|
|
2
|
+
import { Modules } from '../../../schema/manifest';
|
|
3
|
+
export declare const validateRovoMcpActions: (allModules: Modules, yamlContentByLine?: string[]) => ValidationError[];
|
|
4
|
+
//# sourceMappingURL=validate-rovo-mcp-actions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validate-rovo-mcp-actions.d.ts","sourceRoot":"","sources":["../../../../src/validators/modules-validators/rovo/validate-rovo-mcp-actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAkB,MAAM,gBAAgB,CAAC;AAGjE,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,eAAO,MAAM,sBAAsB,eAAgB,OAAO,sBAAsB,MAAM,EAAE,KAAG,eAAe,EAezG,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.validateRovoMcpActions = void 0;
|
|
4
|
+
const types_1 = require("../../../types");
|
|
5
|
+
const text_1 = require("../../../text");
|
|
6
|
+
const utils_1 = require("../../../utils");
|
|
7
|
+
const validateRovoMcpActions = (allModules, yamlContentByLine) => {
|
|
8
|
+
const validationErrors = [];
|
|
9
|
+
const rovoMcps = allModules[types_1.AllModuleTypes.RovoMcp];
|
|
10
|
+
const actionKey = (0, utils_1.cleanKey)(types_1.AllModuleTypes.CoreAction);
|
|
11
|
+
const actions = new Set(allModules[actionKey]?.map((action) => action.key) ?? []);
|
|
12
|
+
rovoMcps?.forEach((mcp) => {
|
|
13
|
+
mcp.tools?.forEach((tool) => {
|
|
14
|
+
if (!actions.has(tool)) {
|
|
15
|
+
validationErrors.push(getValidationError(mcp.key, tool, yamlContentByLine));
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
return validationErrors;
|
|
20
|
+
};
|
|
21
|
+
exports.validateRovoMcpActions = validateRovoMcpActions;
|
|
22
|
+
function getValidationError(mcp, tool, yamlContentByLine) {
|
|
23
|
+
return {
|
|
24
|
+
message: text_1.errors.modules.rovo.incorrectMcp(mcp, tool),
|
|
25
|
+
reference: text_1.References.Modules,
|
|
26
|
+
level: 'error',
|
|
27
|
+
...(0, utils_1.findPosition)(mcp, yamlContentByLine)
|
|
28
|
+
};
|
|
29
|
+
}
|