From 2421046a0cd99ede5efb4200765ed1bb6371831f Mon Sep 17 00:00:00 2001 From: Sven Date: Wed, 25 Mar 2026 18:23:44 +0100 Subject: [PATCH] fix(config): align template config.json with DEFAULT_CONFIG gate values and sections Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/templates/config.json | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/templates/templates/config.json b/templates/templates/config.json index 33ca3190..f8d00be3 100644 --- a/templates/templates/config.json +++ b/templates/templates/config.json @@ -1,5 +1,5 @@ { - "version": "5.12.0", + "version": "0.0.0-dev", "execution": { "model_profile": "balanced", "parallelism": { @@ -10,11 +10,11 @@ "verification": { "strict_mode": true, "gates": [ - "tests", - "build", - "lint", - "spec", - "review" + "tests_pass", + "build_succeeds", + "lint_clean", + "spec_compliance", + "code_review" ], "require_code_review": true, "auto_resolve_conflicts": true @@ -35,5 +35,14 @@ }, "hooks": { "enabled": true + }, + "workflow": { + "research": true, + "plan_checker": true, + "verifier": true, + "auto_advance": false + }, + "git": { + "branching_strategy": "phase" } }