Add tui.experimental_mode setting (#9656)

To simplify testing
This commit is contained in:
pakrym-oai
2026-01-21 21:27:57 -08:00
committed by GitHub
parent e520592bcf
commit 836f0343a3
6 changed files with 101 additions and 34 deletions

View File

@@ -343,6 +343,16 @@
}
]
},
"ModeKind": {
"description": "Initial collaboration mode to use when the TUI starts.",
"enum": [
"plan",
"pair_programming",
"execute",
"custom"
],
"type": "string"
},
"ModelProviderInfo": {
"additionalProperties": false,
"description": "Serializable representation of a provider definition.",
@@ -953,6 +963,15 @@
"description": "Enable animations (welcome screen, shimmer effects, spinners). Defaults to `true`.",
"type": "boolean"
},
"experimental_mode": {
"allOf": [
{
"$ref": "#/definitions/ModeKind"
}
],
"default": null,
"description": "Start the TUI in the specified collaboration mode (plan/execute/etc.). Defaults to unset."
},
"notifications": {
"allOf": [
{