@forge/manifest 5.6.0-next.0 → 5.6.0-next.0-experimental-326ff96

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 5.6.0-next.0-experimental-326ff96
4
+
5
+ ### Minor Changes
6
+
7
+ - 75f0e40: Enforce scope on bitbucket:mergeCheck module
8
+
9
+ ### Patch Changes
10
+
11
+ - afb1634: Update manifest definitions
12
+
3
13
  ## 5.6.0-next.0
4
14
 
5
15
  ### Minor Changes
@@ -17357,6 +17357,103 @@
17357
17357
  }
17358
17358
  },
17359
17359
  "minItems": 1
17360
+ },
17361
+ "ai:skill": {
17362
+ "type": "array",
17363
+ "items": {
17364
+ "type": "object",
17365
+ "required": [
17366
+ "description",
17367
+ "function",
17368
+ "key"
17369
+ ],
17370
+ "properties": {
17371
+ "description": {
17372
+ "minLength": 1,
17373
+ "maxLength": 255,
17374
+ "type": "string"
17375
+ },
17376
+ "function": {
17377
+ "type": "string",
17378
+ "minLength": 1,
17379
+ "maxLength": 255,
17380
+ "pattern": "^[a-zA-Z0-9-_]+$"
17381
+ },
17382
+ "inputSchema": {
17383
+ "allOf": [
17384
+ {
17385
+ "$ref": "#/definitions/JsonSchema"
17386
+ },
17387
+ {
17388
+ "description": "The input schema for the skill. This must be a valid JSON schema draft v7 and the top level type must be an object.",
17389
+ "type": "object",
17390
+ "properties": {
17391
+ "type": {
17392
+ "type": "string",
17393
+ "enum": [
17394
+ "object"
17395
+ ]
17396
+ }
17397
+ },
17398
+ "required": [
17399
+ "type"
17400
+ ]
17401
+ }
17402
+ ]
17403
+ },
17404
+ "key": {
17405
+ "$ref": "#/definitions/ModuleKeySchema"
17406
+ }
17407
+ },
17408
+ "not": {
17409
+ "required": [
17410
+ "unlicensedAccess"
17411
+ ]
17412
+ }
17413
+ },
17414
+ "minItems": 1
17415
+ },
17416
+ "ai:agent": {
17417
+ "type": "array",
17418
+ "items": {
17419
+ "type": "object",
17420
+ "required": [
17421
+ "name",
17422
+ "prompt",
17423
+ "model",
17424
+ "key"
17425
+ ],
17426
+ "properties": {
17427
+ "name": {
17428
+ "type": "string"
17429
+ },
17430
+ "description": {
17431
+ "type": "string"
17432
+ },
17433
+ "model": {
17434
+ "type": "string",
17435
+ "enum": [
17436
+ "gpt-4",
17437
+ "gpt-3.5"
17438
+ ]
17439
+ },
17440
+ "prompt": {
17441
+ "type": "string"
17442
+ },
17443
+ "follow-up-prompt": {
17444
+ "type": "string"
17445
+ },
17446
+ "key": {
17447
+ "$ref": "#/definitions/ModuleKeySchema"
17448
+ }
17449
+ },
17450
+ "not": {
17451
+ "required": [
17452
+ "unlicensedAccess"
17453
+ ]
17454
+ }
17455
+ },
17456
+ "minItems": 1
17360
17457
  }
17361
17458
  },
17362
17459
  "title": "ModuleSchema",
@@ -19845,6 +19942,243 @@
19845
19942
  "type": "object",
19846
19943
  "title": "Body",
19847
19944
  "description": "\n\n<p>\n Defines styles to be applied on the body of content view.\n </p>\n <p>\n The supported properties include <i>background</i> shorthand property and all CSS background element properties.\n The keys are the camelCased versions of corresponding CSS properties, like <i>backgroundImage</i>,\n <i>backgroundColor</i>, <i>backgroundSize</i>, <i>backgroundPosition</i>, <i>backgroundRepeat</i>,\n <i>backgroundClip</i>, <i>backgroundOrigin</i>, <i>backgroundAttachment</i>, and <i>backgroundBlendMode</i>.\n </p>\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"padding\": \"10px\",\n \"borderRadius\": \"0 0 5px 5px\",\n \"background\": \"#FFFFFF\"\n }\n\n\n"
19945
+ },
19946
+ "schemaArray": {
19947
+ "type": "array",
19948
+ "minItems": 1,
19949
+ "items": {
19950
+ "$ref": "#/definitions/JsonSchema"
19951
+ }
19952
+ },
19953
+ "nonNegativeInteger": {
19954
+ "type": "integer",
19955
+ "minimum": 0
19956
+ },
19957
+ "nonNegativeIntegerDefault0": {
19958
+ "allOf": [
19959
+ {
19960
+ "$ref": "#/definitions/nonNegativeInteger"
19961
+ },
19962
+ {
19963
+ "default": 0
19964
+ }
19965
+ ]
19966
+ },
19967
+ "simpleTypes": {
19968
+ "enum": [
19969
+ "array",
19970
+ "boolean",
19971
+ "integer",
19972
+ "null",
19973
+ "number",
19974
+ "object",
19975
+ "string"
19976
+ ]
19977
+ },
19978
+ "stringArray": {
19979
+ "type": "array",
19980
+ "items": {
19981
+ "type": "string"
19982
+ },
19983
+ "uniqueItems": true,
19984
+ "default": []
19985
+ },
19986
+ "JsonSchema": {
19987
+ "title": "Core schema meta-schema",
19988
+ "type": [
19989
+ "object",
19990
+ "boolean"
19991
+ ],
19992
+ "properties": {
19993
+ "$id": {
19994
+ "type": "string",
19995
+ "format": "uri-reference"
19996
+ },
19997
+ "$schema": {
19998
+ "type": "string",
19999
+ "format": "uri"
20000
+ },
20001
+ "$ref": {
20002
+ "type": "string",
20003
+ "format": "uri-reference"
20004
+ },
20005
+ "$comment": {
20006
+ "type": "string"
20007
+ },
20008
+ "title": {
20009
+ "type": "string"
20010
+ },
20011
+ "description": {
20012
+ "type": "string"
20013
+ },
20014
+ "default": true,
20015
+ "readOnly": {
20016
+ "type": "boolean",
20017
+ "default": false
20018
+ },
20019
+ "examples": {
20020
+ "type": "array",
20021
+ "items": true
20022
+ },
20023
+ "multipleOf": {
20024
+ "type": "number",
20025
+ "exclusiveMinimum": 0
20026
+ },
20027
+ "maximum": {
20028
+ "type": "number"
20029
+ },
20030
+ "exclusiveMaximum": {
20031
+ "type": "number"
20032
+ },
20033
+ "minimum": {
20034
+ "type": "number"
20035
+ },
20036
+ "exclusiveMinimum": {
20037
+ "type": "number"
20038
+ },
20039
+ "maxLength": {
20040
+ "$ref": "#/definitions/nonNegativeInteger"
20041
+ },
20042
+ "minLength": {
20043
+ "$ref": "#/definitions/nonNegativeIntegerDefault0"
20044
+ },
20045
+ "pattern": {
20046
+ "type": "string",
20047
+ "format": "regex"
20048
+ },
20049
+ "additionalItems": {
20050
+ "$ref": "#/definitions/JsonSchema"
20051
+ },
20052
+ "items": {
20053
+ "anyOf": [
20054
+ {
20055
+ "$ref": "#/definitions/JsonSchema"
20056
+ },
20057
+ {
20058
+ "$ref": "#/definitions/schemaArray"
20059
+ }
20060
+ ],
20061
+ "default": true
20062
+ },
20063
+ "maxItems": {
20064
+ "$ref": "#/definitions/nonNegativeInteger"
20065
+ },
20066
+ "minItems": {
20067
+ "$ref": "#/definitions/nonNegativeIntegerDefault0"
20068
+ },
20069
+ "uniqueItems": {
20070
+ "type": "boolean",
20071
+ "default": false
20072
+ },
20073
+ "contains": {
20074
+ "$ref": "#/definitions/JsonSchema"
20075
+ },
20076
+ "maxProperties": {
20077
+ "$ref": "#/definitions/nonNegativeInteger"
20078
+ },
20079
+ "minProperties": {
20080
+ "$ref": "#/definitions/nonNegativeIntegerDefault0"
20081
+ },
20082
+ "required": {
20083
+ "$ref": "#/definitions/stringArray"
20084
+ },
20085
+ "additionalProperties": {
20086
+ "$ref": "#/definitions/JsonSchema"
20087
+ },
20088
+ "definitions": {
20089
+ "type": "object",
20090
+ "additionalProperties": {
20091
+ "$ref": "#/definitions/JsonSchema"
20092
+ },
20093
+ "default": {}
20094
+ },
20095
+ "properties": {
20096
+ "type": "object",
20097
+ "additionalProperties": {
20098
+ "$ref": "#/definitions/JsonSchema"
20099
+ },
20100
+ "default": {}
20101
+ },
20102
+ "patternProperties": {
20103
+ "type": "object",
20104
+ "additionalProperties": {
20105
+ "$ref": "#/definitions/JsonSchema"
20106
+ },
20107
+ "propertyNames": {
20108
+ "format": "regex"
20109
+ },
20110
+ "default": {}
20111
+ },
20112
+ "dependencies": {
20113
+ "type": "object",
20114
+ "additionalProperties": {
20115
+ "anyOf": [
20116
+ {
20117
+ "$ref": "#/definitions/JsonSchema"
20118
+ },
20119
+ {
20120
+ "$ref": "#/definitions/stringArray"
20121
+ }
20122
+ ]
20123
+ }
20124
+ },
20125
+ "propertyNames": {
20126
+ "$ref": "#/definitions/JsonSchema"
20127
+ },
20128
+ "const": true,
20129
+ "enum": {
20130
+ "type": "array",
20131
+ "items": true,
20132
+ "minItems": 1,
20133
+ "uniqueItems": true
20134
+ },
20135
+ "type": {
20136
+ "anyOf": [
20137
+ {
20138
+ "$ref": "#/definitions/simpleTypes"
20139
+ },
20140
+ {
20141
+ "type": "array",
20142
+ "items": {
20143
+ "$ref": "#/definitions/simpleTypes"
20144
+ },
20145
+ "minItems": 1,
20146
+ "uniqueItems": true
20147
+ }
20148
+ ]
20149
+ },
20150
+ "format": {
20151
+ "type": "string"
20152
+ },
20153
+ "contentMediaType": {
20154
+ "type": "string"
20155
+ },
20156
+ "contentEncoding": {
20157
+ "type": "string"
20158
+ },
20159
+ "if": {
20160
+ "$ref": "#/definitions/JsonSchema"
20161
+ },
20162
+ "then": {
20163
+ "$ref": "#/definitions/JsonSchema"
20164
+ },
20165
+ "else": {
20166
+ "$ref": "#/definitions/JsonSchema"
20167
+ },
20168
+ "allOf": {
20169
+ "$ref": "#/definitions/schemaArray"
20170
+ },
20171
+ "anyOf": {
20172
+ "$ref": "#/definitions/schemaArray"
20173
+ },
20174
+ "oneOf": {
20175
+ "$ref": "#/definitions/schemaArray"
20176
+ },
20177
+ "not": {
20178
+ "$ref": "#/definitions/JsonSchema"
20179
+ }
20180
+ },
20181
+ "default": true
19848
20182
  }
19849
20183
  },
19850
20184
  "additionalProperties": false,
@@ -194,6 +194,69 @@ export type LinkTypes = [
194
194
  'chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link',
195
195
  ...('chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link')[]
196
196
  ];
197
+ export type CoreSchemaMetaSchema =
198
+ | {
199
+ $id?: string;
200
+ $schema?: string;
201
+ $ref?: string;
202
+ $comment?: string;
203
+ title?: string;
204
+ description?: string;
205
+ default?: true;
206
+ readOnly?: boolean;
207
+ examples?: true[];
208
+ multipleOf?: number;
209
+ maximum?: number;
210
+ exclusiveMaximum?: number;
211
+ minimum?: number;
212
+ exclusiveMinimum?: number;
213
+ maxLength?: NonNegativeInteger;
214
+ minLength?: NonNegativeIntegerDefault0;
215
+ pattern?: string;
216
+ additionalItems?: CoreSchemaMetaSchema;
217
+ items?: CoreSchemaMetaSchema | SchemaArray;
218
+ maxItems?: NonNegativeInteger;
219
+ minItems?: NonNegativeIntegerDefault0;
220
+ uniqueItems?: boolean;
221
+ contains?: CoreSchemaMetaSchema;
222
+ maxProperties?: NonNegativeInteger;
223
+ minProperties?: NonNegativeIntegerDefault0;
224
+ required?: StringArray;
225
+ additionalProperties?: CoreSchemaMetaSchema;
226
+ definitions?: {
227
+ [k: string]: CoreSchemaMetaSchema;
228
+ };
229
+ properties?: {
230
+ [k: string]: CoreSchemaMetaSchema;
231
+ };
232
+ patternProperties?: {
233
+ [k: string]: CoreSchemaMetaSchema;
234
+ };
235
+ dependencies?: {
236
+ [k: string]: CoreSchemaMetaSchema | StringArray;
237
+ };
238
+ propertyNames?: CoreSchemaMetaSchema;
239
+ const?: true;
240
+ enum?: [true, ...unknown[]];
241
+ type?: SimpleTypes | [SimpleTypes, ...SimpleTypes[]];
242
+ format?: string;
243
+ contentMediaType?: string;
244
+ contentEncoding?: string;
245
+ if?: CoreSchemaMetaSchema;
246
+ then?: CoreSchemaMetaSchema;
247
+ else?: CoreSchemaMetaSchema;
248
+ allOf?: SchemaArray;
249
+ anyOf?: SchemaArray;
250
+ oneOf?: SchemaArray;
251
+ not?: CoreSchemaMetaSchema;
252
+ [k: string]: unknown;
253
+ }
254
+ | boolean;
255
+ export type NonNegativeInteger = number;
256
+ export type NonNegativeIntegerDefault0 = NonNegativeInteger & number;
257
+ export type SchemaArray = [CoreSchemaMetaSchema, ...CoreSchemaMetaSchema[]];
258
+ export type StringArray = string[];
259
+ export type SimpleTypes = 'array' | 'boolean' | 'integer' | 'null' | 'number' | 'object' | 'string';
197
260
  export type Scopes = string[];
198
261
  export type Scripts = string[];
199
262
  export type Styles = 'unsafe-inline'[];
@@ -7612,6 +7675,48 @@ export interface Modules {
7612
7675
  [k: string]: unknown;
7613
7676
  }[]
7614
7677
  ];
7678
+ 'ai:skill'?: [
7679
+ {
7680
+ description: string;
7681
+ function: string;
7682
+ inputSchema?: CoreSchemaMetaSchema & {
7683
+ type: 'object';
7684
+ [k: string]: unknown;
7685
+ };
7686
+ key: ModuleKeySchema;
7687
+ [k: string]: unknown;
7688
+ },
7689
+ ...{
7690
+ description: string;
7691
+ function: string;
7692
+ inputSchema?: CoreSchemaMetaSchema & {
7693
+ type: 'object';
7694
+ [k: string]: unknown;
7695
+ };
7696
+ key: ModuleKeySchema;
7697
+ [k: string]: unknown;
7698
+ }[]
7699
+ ];
7700
+ 'ai:agent'?: [
7701
+ {
7702
+ name: string;
7703
+ description?: string;
7704
+ model: 'gpt-4' | 'gpt-3.5';
7705
+ prompt: string;
7706
+ 'follow-up-prompt'?: string;
7707
+ key: ModuleKeySchema;
7708
+ [k: string]: unknown;
7709
+ },
7710
+ ...{
7711
+ name: string;
7712
+ description?: string;
7713
+ model: 'gpt-4' | 'gpt-3.5';
7714
+ prompt: string;
7715
+ 'follow-up-prompt'?: string;
7716
+ key: ModuleKeySchema;
7717
+ [k: string]: unknown;
7718
+ }[]
7719
+ ];
7615
7720
  [k: string]: unknown;
7616
7721
  }
7617
7722
  export interface Filter {
@@ -152,6 +152,7 @@
152
152
  "read:design:jira",
153
153
  "read:dev-info:jira",
154
154
  "read:document-info:jira",
155
+ "read:entitlements:ccg",
155
156
  "read:epic:jira-software",
156
157
  "read:event:compass",
157
158
  "read:feature-flag-info:jira",
@@ -148,7 +148,9 @@ export declare enum AllModuleTypes {
148
148
  AutomationForConfluenceCondition = "automation:condition",
149
149
  AutomationForConfluenceAttributeResolver = "automation:attributeResolver",
150
150
  AutomationForConfluenceTemplate = "automation:template",
151
- AutomationForConfluenceI18n = "automation:i18n"
151
+ AutomationForConfluenceI18n = "automation:i18n",
152
+ AiSkillModule = "ai:skill",
153
+ AiAgentModule = "ai:agent"
152
154
  }
153
155
  export declare const SUPPORTED_MODULES: AllModuleTypes[];
154
156
  export declare const SUPPORTED_PRODUCTS_ONLY: string[];
@@ -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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"}
@@ -153,6 +153,8 @@ var AllModuleTypes;
153
153
  AllModuleTypes["AutomationForConfluenceAttributeResolver"] = "automation:attributeResolver";
154
154
  AllModuleTypes["AutomationForConfluenceTemplate"] = "automation:template";
155
155
  AllModuleTypes["AutomationForConfluenceI18n"] = "automation:i18n";
156
+ AllModuleTypes["AiSkillModule"] = "ai:skill";
157
+ AllModuleTypes["AiAgentModule"] = "ai:agent";
156
158
  })(AllModuleTypes = exports.AllModuleTypes || (exports.AllModuleTypes = {}));
157
159
  exports.SUPPORTED_MODULES = Object.values(AllModuleTypes);
158
160
  exports.SUPPORTED_PRODUCTS_ONLY = [...new Set(exports.SUPPORTED_MODULES.map((module) => module.split(':')[0]))];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "5.6.0-next.0",
3
+ "version": "5.6.0-next.0-experimental-326ff96",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {