@forge/manifest 13.2.0-next.4-experimental-28c9ab7 → 13.2.0-next.6

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,27 +1,16 @@
1
1
  # @forge/manifest
2
2
 
3
- ## 13.2.0-next.4-experimental-28c9ab7
4
-
5
- ### Minor Changes
6
-
7
- - 8826ca3: add personal apps support for Forge app creation
3
+ ## 13.2.0-next.6
8
4
 
9
5
  ### Patch Changes
10
6
 
11
- - 4c5ba1c: Add `permissions.sandbox` to the manifest schema. When `allow-storage-access-by-user-activation` is included in the `sandbox` array, the app iframe sandbox will include the corresponding token, enabling the app to request third-party storage access (e.g. cookies) via the Storage Access API when triggered by a user gesture.
7
+ - 119be75: Update manifest definitions
12
8
 
13
- Example usage:
9
+ ## 13.2.0-next.5
14
10
 
15
- ```yaml
16
- permissions:
17
- sandbox:
18
- - allow-storage-access-by-user-activation
19
- ```
11
+ ### Minor Changes
20
12
 
21
- - 5abe69e: add support for personal app installation contexts
22
- - 7195f29: Update manifest definitions
23
- - 3252a62: Update manifest definitions
24
- - c67b720: Update manifest definitions
13
+ - 2b30ef8: Add SKILL.md file validation
25
14
 
26
15
  ## 13.2.0-next.4
27
16
 
@@ -31640,6 +31640,19 @@
31640
31640
  "type": "string"
31641
31641
  }
31642
31642
  },
31643
+ "skills": {
31644
+ "description": "A list of skills that this agent can access to perform tasks.",
31645
+ "type": "array",
31646
+ "minItems": 1,
31647
+ "uniqueItems": true,
31648
+ "items": {
31649
+ "description": "The key for a rovo:skill module in your descriptor / manifest.",
31650
+ "minLength": 1,
31651
+ "pattern": "^[a-zA-Z0-9_-]+$",
31652
+ "title": "RovoSkillModuleKey",
31653
+ "type": "string"
31654
+ }
31655
+ },
31643
31656
  "key": {
31644
31657
  "$ref": "#/definitions/ModuleKeySchema"
31645
31658
  }
@@ -31769,6 +31782,7 @@
31769
31782
  "type": "array",
31770
31783
  "items": {
31771
31784
  "type": "object",
31785
+ "additionalProperties": false,
31772
31786
  "required": [
31773
31787
  "source",
31774
31788
  "key"
@@ -31789,10 +31803,22 @@
31789
31803
  },
31790
31804
  "dependencies": {
31791
31805
  "type": "object",
31806
+ "additionalProperties": false,
31807
+ "required": [
31808
+ "tools"
31809
+ ],
31792
31810
  "properties": {
31793
31811
  "tools": {
31812
+ "description": "A list of actions that this skill depends on to perform tasks.",
31794
31813
  "type": "array",
31814
+ "minItems": 1,
31815
+ "uniqueItems": true,
31795
31816
  "items": {
31817
+ "description": "The key of an action extension in your manifest.",
31818
+ "maxLength": 255,
31819
+ "minLength": 1,
31820
+ "pattern": "^[a-zA-Z0-9-._]+$",
31821
+ "title": "ActionExtensionKey",
31796
31822
  "type": "string"
31797
31823
  }
31798
31824
  }