This commit is contained in:
jif-oai
2026-01-16 18:29:52 +01:00
parent 8869f662bf
commit 507e43b69c
4 changed files with 153 additions and 114 deletions

View File

@@ -75,6 +75,9 @@
"apply_patch_freeform": {
"type": "boolean"
},
"child_agents_md": {
"type": "boolean"
},
"collab": {
"type": "boolean"
},
@@ -99,9 +102,6 @@
"experimental_windows_sandbox": {
"type": "boolean"
},
"child_agents_md": {
"type": "boolean"
},
"include_apply_patch_tool": {
"type": "boolean"
},
@@ -373,6 +373,15 @@
"description": "When set to `true`, `AgentReasoningRawContentEvent` events will be shown in the UI/output. Defaults to `false`.",
"type": "boolean"
},
"skills": {
"description": "Additional skill sources to load from local paths or URLs.",
"default": null,
"allOf": [
{
"$ref": "#/definitions/SkillsConfigToml"
}
]
},
"tool_output_token_limit": {
"description": "Token budget applied when storing tool/function outputs in the context manager.",
"type": "integer",
@@ -543,6 +552,9 @@
"apply_patch_freeform": {
"type": "boolean"
},
"child_agents_md": {
"type": "boolean"
},
"collab": {
"type": "boolean"
},
@@ -567,9 +579,6 @@
"experimental_windows_sandbox": {
"type": "boolean"
},
"child_agents_md": {
"type": "boolean"
},
"include_apply_patch_tool": {
"type": "boolean"
},
@@ -1288,6 +1297,55 @@
},
"additionalProperties": false
},
"SkillSourcePathToml": {
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"$ref": "#/definitions/AbsolutePathBuf"
}
},
"additionalProperties": false
},
"SkillSourceToml": {
"anyOf": [
{
"$ref": "#/definitions/SkillSourcePathToml"
},
{
"$ref": "#/definitions/SkillSourceUrlToml"
}
]
},
"SkillSourceUrlToml": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
}
},
"additionalProperties": false
},
"SkillsConfigToml": {
"description": "Configuration for additional skill sources.",
"type": "object",
"properties": {
"sources": {
"description": "Additional skill sources to load. Each entry can be a local path or a URL.",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/SkillSourceToml"
}
}
},
"additionalProperties": false
},
"ToolsToml": {
"type": "object",
"properties": {