Files
vibe-kanban/shared/schemas/codex.json
Solomon 7c10c00d93 Upgrade Codex to the latest version (#947)
* Upgrade Codex to the latest version

Use the new `app-server` protocol to interact with codex cli.

* Fix spawn errors

* simplify session forking

* Append spawn errors to the logs
2025-10-07 14:57:41 +01:00

124 lines
2.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"append_prompt": {
"title": "Append Prompt",
"description": "Extra text appended to the prompt",
"type": [
"string",
"null"
],
"format": "textarea",
"default": null
},
"sandbox": {
"description": "Sandbox policy modes for Codex",
"type": [
"string",
"null"
],
"enum": [
"auto",
"read-only",
"workspace-write",
"danger-full-access",
null
]
},
"oss": {
"type": [
"boolean",
"null"
]
},
"model": {
"type": [
"string",
"null"
]
},
"model_reasoning_effort": {
"description": "Reasoning effort for the underlying model",
"type": [
"string",
"null"
],
"enum": [
"low",
"medium",
"high",
null
]
},
"model_reasoning_summary": {
"description": "Model reasoning summary style",
"type": [
"string",
"null"
],
"enum": [
"auto",
"concise",
"detailed",
"none",
null
]
},
"model_reasoning_summary_format": {
"description": "Format for model reasoning summaries",
"type": [
"string",
"null"
],
"enum": [
"none",
"experimental",
null
]
},
"profile": {
"type": [
"string",
"null"
]
},
"base_instructions": {
"type": [
"string",
"null"
]
},
"include_plan_tool": {
"type": [
"boolean",
"null"
]
},
"include_apply_patch_tool": {
"type": [
"boolean",
"null"
]
},
"base_command_override": {
"title": "Base Command Override",
"description": "Override the base command with a custom command",
"type": [
"string",
"null"
]
},
"additional_params": {
"title": "Additional Parameters",
"description": "Additional parameters to append to the base command",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
},
"type": "object"
}