From 4ba318876be8467c66396430d86e9599d2d366ad Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 15 May 2026 15:23:53 +0200 Subject: [PATCH] chore: configure GSD for maximum-rigor remediation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Settings chosen for the Mokosh stabilization work: - model_profile: quality (Opus everywhere except verification) - git.branching_strategy: phase (gsd/phase-{N}-{slug} per phase) - workflow.code_review: true with depth=deep (cross-file analysis with import graphs — appropriate given the SW ↔ offscreen ↔ content-script messaging interplay) - workflow.tdd_mode: true (RED/GREEN/REFACTOR gates for eligible tasks, retrofits regression coverage as we touch each file) All other settings inherit gsd-sdk defaults (research/plan-check/verifier on, balanced commit_docs, no Intel/Graphify indexing yet). Co-Authored-By: Claude Opus 4.7 (1M context) --- .planning/config.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .planning/config.json diff --git a/.planning/config.json b/.planning/config.json new file mode 100644 index 0000000..a27c29c --- /dev/null +++ b/.planning/config.json @@ -0,0 +1,11 @@ +{ + "model_profile": "quality", + "git": { + "branching_strategy": "phase" + }, + "workflow": { + "code_review": true, + "code_review_depth": "deep", + "tdd_mode": true + } +}