From 52d9271e636b23d52349f1b5f1c42789986869f4 Mon Sep 17 00:00:00 2001 From: Gaurav Ghosh Date: Tue, 17 Feb 2026 13:30:00 -0800 Subject: [PATCH] chore: regenerate settings schema and docs --- docs/cli/settings.md | 11 ----------- schemas/settings.schema.json | 5 +++++ 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/docs/cli/settings.md b/docs/cli/settings.md index abcd9017ec..5011f55b2c 100644 --- a/docs/cli/settings.md +++ b/docs/cli/settings.md @@ -126,17 +126,6 @@ they appear in the UI. | --------------------------------- | ------------------------------ | --------------------------------------------- | ------- | | Auto Configure Max Old Space Size | `advanced.autoConfigureMemory` | Automatically configure Node.js memory limits | `false` | -### Agents - -| UI Label | Setting | Description | Default | -| -------------------- | --------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -------------- | -| Enable Browser Agent | `agents.overrides.browser_agent.enabled` | Enable the browser automation sub-agent. | `false` | -| Session Mode | `agents.overrides.browser_agent.customConfig.sessionMode` | How Chrome is managed: `"persistent"`, `"isolated"`, or `"existing"`. | `"persistent"` | -| Headless | `agents.overrides.browser_agent.customConfig.headless` | Run Chrome in headless mode (no visible window). | `false` | -| Chrome Profile Path | `agents.overrides.browser_agent.customConfig.chromeProfilePath` | Custom path to a Chrome profile directory. | `undefined` | -| Visual Model | `agents.overrides.browser_agent.customConfig.visualModel` | Model override for visual analysis (for example, `"gemini-2.5-computer-use-preview-10-2025"`). | `undefined` | -| Allowed Domains | `agents.overrides.browser_agent.customConfig.allowedDomains` | Restrict navigation to these domain patterns. Supports `*` wildcards. If empty, all non-blocked URLs are allowed. | `[]` | - ### Experimental | UI Label | Setting | Description | Default | diff --git a/schemas/settings.schema.json b/schemas/settings.schema.json index 7ef861d882..0b68680aba 100644 --- a/schemas/settings.schema.json +++ b/schemas/settings.schema.json @@ -2092,6 +2092,11 @@ "enabled": { "type": "boolean", "description": "Whether to enable the agent." + }, + "customConfig": { + "type": "object", + "description": "Agent-specific custom configuration. Each agent defines its own schema.", + "additionalProperties": true } } },