From 2d5f40ae65d9643a3be38aa36088002b05bdd87d Mon Sep 17 00:00:00 2001 From: Badcuban <108198679+badcuban@users.noreply.github.com> Date: Tue, 4 Aug 2026 01:25:24 -0400 Subject: [PATCH 1/2] Add new Claude subagent limit fields to keybindings toast fixture The subagent-limits schema change landed between this fixture's last CI run and merge, leaving main's web typecheck red. --- apps/web/src/components/KeybindingsToast.browser.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/components/KeybindingsToast.browser.tsx b/apps/web/src/components/KeybindingsToast.browser.tsx index f1b0bbc7..a0e89581 100644 --- a/apps/web/src/components/KeybindingsToast.browser.tsx +++ b/apps/web/src/components/KeybindingsToast.browser.tsx @@ -134,6 +134,9 @@ function createBaseServerConfig(): ServerConfig { customModels: [], fallbackModel: [], launchArgs: "", + maxConcurrentSubagents: "", + maxSubagentsPerSession: "", + maxSubagentSpawnDepth: "", }, cursor: { enabled: true, binaryPath: "", apiEndpoint: "", customModels: [] }, opencode: { From 8dbd82a5895c86b2acf6453009dbc522640ecdbf Mon Sep 17 00:00:00 2001 From: Badcuban <108198679+badcuban@users.noreply.github.com> Date: Tue, 4 Aug 2026 01:28:23 -0400 Subject: [PATCH 2/2] Complete the Claude config fixture in the provider registry test too Same green-alone-red-combined gap as the keybindings toast fixture: the sequential CI job surfaced it only after the web typecheck was fixed. --- .../src/provider/Layers/ProviderInstanceRegistryLive.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/server/src/provider/Layers/ProviderInstanceRegistryLive.test.ts b/apps/server/src/provider/Layers/ProviderInstanceRegistryLive.test.ts index 6f535f5d..1acef463 100644 --- a/apps/server/src/provider/Layers/ProviderInstanceRegistryLive.test.ts +++ b/apps/server/src/provider/Layers/ProviderInstanceRegistryLive.test.ts @@ -70,6 +70,9 @@ const makeClaudeConfig = (overrides: Partial): ClaudeSettings => customModels: [], fallbackModel: [], launchArgs: "", + maxConcurrentSubagents: "", + maxSubagentsPerSession: "", + maxSubagentSpawnDepth: "", ...overrides, });