mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 20:23:36 +00:00
apply the patches
This commit is contained in:
@@ -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) */
|
||||
|
||||
Reference in New Issue
Block a user