feat(dashboard): schema override for browser.headed toggle

Salvaged from PR #25653 by @Black0Fox0 — the config-key and env-wiring
halves of that PR landed via #67018; this carries the surviving dashboard
schema override so browser.headed renders as a labeled boolean toggle.
Description updated to reflect the merged cleanup-skip behavior.
This commit is contained in:
Ayoub 2026-07-18 10:46:38 -07:00 committed by Teknium
parent e45d12642d
commit 5b44b65887
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1 @@
Black0Fox0

View file

@ -746,6 +746,10 @@ _SCHEMA_OVERRIDES: Dict[str, Dict[str, Any]] = {
"not writable."
),
},
"browser.headed": {
"type": "boolean",
"description": "Run the local browser in headed mode (visible window). Also keeps the window open between turns; idle sessions are still reaped after browser.inactivity_timeout.",
},
}
# Categories with fewer fields get merged into "general" to avoid tab sprawl.