changedInput schema / properties / description / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maxLength": 500,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / description / description
Added value: +"Optional short description of the skill's purpose."
addedInput schema / properties / name / description
Added value: +"Human-readable skill name containing at least one letter or number."
addedInput schema / properties / name / maxLength
Added value: +80
addedInput schema / properties / name / minLength
Added value: +1
changedInput schema / properties / resources / anyOf
Previous value: -[
- {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "maxProperties": 50,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / resources / description
Added value: +"Optional map of up to 50 relative file paths to UTF-8 text contents; total upload limit is 512 KB."
addedInput schema / properties / skill_md / description
Added value: +"Complete UTF-8 SKILL.md text with YAML frontmatter; maximum encoded size is 256 KB."
addedInput schema / properties / skill_md / minLength
Added value: +1
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / properties
Added value: +{
+ "message": {
+ "type": "string"
+ },
+ "status": {
+ "const": "disabled",
+ "type": "string"
+ },
+ "version": {
+ "type": "integer"
+ }
+}
addedOutput schema / required
Added value: +[
+ "status",
+ "version",
+ "message"
+]