/** * FORGE Configuration Types * Based on .planning/forge.config.json schema */ export type ForgeMode = 'yolo' | 'interactive'; export type ForgeDepth = 'quick' | 'standard' | 'comprehensive'; export type GitStrategy = 'none' | 'worktree' | 'branch'; export type AgentProfile = 'quality' | 'balanced' | 'budget'; export interface WorkflowConfig { research: boolean; planCheck: boolean; tribunal: boolean; contractFirst: boolean; } export interface GitConfig { strategy: GitStrategy; branchTemplate: string; squashOnShip: boolean; } export interface ForgeConfig { mode: ForgeMode; depth: ForgeDepth; maxTeammates: number; taskLimit: number; agentProfile: AgentProfile; workflow: WorkflowConfig; git: GitConfig; } export declare const DEFAULT_CONFIG: ForgeConfig; //# sourceMappingURL=config.d.ts.map