removedInput schema / $defs / ListProjectsInput
Removed value: -{
- "additionalProperties": false,
- "description": "列出项目的输入参数",
- "properties": {
- "page": {
- "default": 0,
- "minimum": 0,
- "title": "Page",
- "type": "integer"
- },
- "page_size": {
- "default": 20,
- "maximum": 100,
- "minimum": 1,
- "title": "Page Size",
- "type": "integer"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "title": "ListProjectsInput",
- "type": "object"
-}
addedInput schema / properties / page
Added value: +{
+ "default": 0,
+ "description": "页码(从 0 开始)",
+ "minimum": 0,
+ "title": "Page",
+ "type": "integer"
+}
addedInput schema / properties / page_size
Added value: +{
+ "default": 20,
+ "description": "分页大小",
+ "maximum": 100,
+ "minimum": 1,
+ "title": "Page Size",
+ "type": "integer"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/ListProjectsInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown",
+ "description": "输出格式:markdown 或 json"
+}
removedInput schema / required
Removed value: -[
- "params"
-]
addedOutput schema / additionalProperties
Added value: +true
addedOutput schema / description
Added value: +"vela_list_projects 的结构化输出"
addedOutput schema / properties / projects
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Projects"
+}
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
removedOutput schema / required
Removed value: -[
- "result"
-]
changedOutput schema / title
Previous value: -"vela_list_projectsOutput"New value: +"ListProjectsOutput"