/** * Config reader — loads `.planning/config.json` and merges with defaults. * * Mirrors the default structure from `get-shit-done/bin/lib/config.cjs` * `buildNewProjectConfig()`. */ export interface GitConfig { branching_strategy: string; phase_branch_template: string; milestone_branch_template: string; quick_branch_template: string | null; } export interface WorkflowConfig { research: boolean; plan_check: boolean; verifier: boolean; nyquist_validation: boolean; /** Mirrors gsd-tools flat `config.tdd_mode` (from `workflow.tdd_mode`). */ tdd_mode: boolean; /** * Issue #3309. `end-of-phase` (default) suppresses mid-flight * `` task emission; the planner * embeds verification details into the relevant `auto` task's * `` block and the verifier harvests them at * end-of-phase into the existing HUMAN-UAT.md path. `mid-flight` * restores the pre-#3309 behavior where the executor halts at each * `checkpoint:human-verify` task and pays a full executor cold-start * cost (CLAUDE.md, MEMORY.md, STATE.md, plan re-read on respawn) per * round-trip. */ human_verify_mode: 'mid-flight' | 'end-of-phase'; auto_advance: boolean; /** Internal auto-chain flag used by workflow routing. */ _auto_chain_active?: boolean; node_repair: boolean; node_repair_budget: number; ui_phase: boolean; ui_safety_gate: boolean; text_mode: boolean; research_before_questions: boolean; discuss_mode: string; skip_discuss: boolean; /** Maximum self-discuss passes in auto/headless mode before forcing proceed. Default: 3. */ max_discuss_passes: number; /** Subagent timeout in ms (matches `get-shit-done/bin/lib/core.cjs` default 300000). */ subagent_timeout: number; /** * Issue #2492. When true (default), enforces that every trackable decision in * CONTEXT.md `` is referenced by at least one plan (translation * gate, blocking) and reports decisions not honored by shipped artifacts at * verify-phase (validation gate, non-blocking). Set false to disable both. */ context_coverage_gate: boolean; /** * Issue #105. When false, the primary checkout is shared or pinned (concurrent * sessions / deliberate base-branch lock) and the commit handler must NOT * auto-switch HEAD to the strategy branch. String value `"false"` is accepted * for resilience against YAML/JSON parsers that leave boolean-like fields as * strings. */ use_worktrees?: boolean | string; } export interface HooksConfig { context_warnings: boolean; } export interface GSDConfig { model_profile: string; commit_docs: boolean; parallelization: boolean; search_gitignored: boolean; brave_search: boolean; firecrawl: boolean; exa_search: boolean; git: GitConfig; workflow: WorkflowConfig; hooks: HooksConfig; agent_skills: Record; /** Project slug for branch templates; mirrors gsd-tools `config.project_code`. */ project_code?: string | null; /** Interactive vs headless; mirrors gsd-tools flat `config.mode`. */ mode?: string; [key: string]: unknown; } /** * Canonical CONFIG_DEFAULTS delegated to the Configuration Module (ADR-3524). * Cast to GSDConfig to preserve typed access for existing consumers. * The canonical manifest may include additional keys beyond GSDConfig's * declared fields (e.g. resolve_model_ids, context_window, planning.*, * ship.*, workflow.security_*, workflow.code_review_*); these are accessible * via the [key: string]: unknown index signature on GSDConfig. * * BEHAVIOR CHANGE (Cycle 3, #3536): CONFIG_DEFAULTS now includes all keys from * sdk/shared/config-defaults.manifest.json. Keys added vs old inline literal: * top-level: resolve_model_ids (false), context_window (200000), * phase_naming ('sequential'), claude_md_path ('./CLAUDE.md') * git: create_tag (true), base_branch (null) * workflow: ai_integration_phase (true), code_review (true), * code_review_depth ('standard'), code_review_command (null), * pattern_mapper (true), plan_bounce (false), plan_bounce_script (null), * plan_bounce_passes (2), auto_prune_state (false), * post_planning_gaps (true), security_enforcement (true), * security_asvs_level (1), security_block_on ('high'), * context_coverage_gate: true (unchanged from old literal) * planning: { commit_docs: true, search_gitignored: false, sub_repos: [], granularity: 'standard' } * hooks: workflow_guard (false) * ship: { pr_body_sections: [] } */ export declare const CONFIG_DEFAULTS: GSDConfig; /** * Load project config from `.planning/config.json`, merging with defaults. * When project config is missing or empty, this returns `mergeDefaults({})` * (built-in defaults only; no `~/.gsd/defaults.json` layering). * Throws on malformed JSON with a helpful error message. */ export declare function loadConfig(projectDir: string, workstream?: string): Promise; //# sourceMappingURL=config.d.ts.map