apply the patches

This commit is contained in:
webdevcody
2026-01-20 10:24:38 -05:00
parent 179c5ae9c2
commit 76eb3a2ac2
42 changed files with 2679 additions and 757 deletions

View File

@@ -802,6 +802,18 @@ export interface GlobalSettings {
* When set, the corresponding profile's settings will be used for Claude API calls
*/
activeClaudeApiProfileId?: string | null;
/**
* Per-worktree auto mode settings
* Key: "${projectId}::${branchName ?? '__main__'}"
*/
autoModeByWorktree?: Record<
string,
{
maxConcurrency: number;
branchName: string | null;
}
>;
}
/**
@@ -1071,6 +1083,7 @@ export const DEFAULT_GLOBAL_SETTINGS: GlobalSettings = {
subagentsSources: ['user', 'project'],
claudeApiProfiles: [],
activeClaudeApiProfileId: null,
autoModeByWorktree: {},
};
/** Default credentials (empty strings - user must provide API keys) */