fix(config): add 'dev-browser' to BrowserAutomationProviderSchema

Config validation was failing when 'dev-browser' was set as the browser
automation provider, causing the entire config to be rejected. This
silently disabled all config options including tmux.enabled.

- Add 'dev-browser' as valid option in BrowserAutomationProviderSchema
- Update JSDoc with dev-browser description
- Regenerate JSON schema
This commit is contained in:
justsisyphus
2026-01-28 12:05:20 +09:00
parent e743cdc182
commit 231f522893
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -2768,7 +2768,8 @@
"type": "string",
"enum": [
"playwright",
"agent-browser"
"agent-browser",
"dev-browser"
]
}
}