feat(CF-314): Add planning_mode_required field and smart planning mode support

Adds DB column, TypeScript types, MCP tool schemas, and CRUD handlers
for planning_mode_required (NULL=auto-detect, true=always, false=never).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-02-04 20:30:36 +02:00
parent baec42810c
commit 6cbb5ce6cb
5 changed files with 29 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
-- CF-314: Add planning_mode_required flag for smart planning mode auto-detection
-- NULL = auto-detect (scoring algorithm), true = always plan, false = never plan
ALTER TABLE tasks ADD COLUMN IF NOT EXISTS planning_mode_required BOOLEAN DEFAULT NULL;