From d0062efd34dfc22c2d8cfee0a47431ac0c8adfda Mon Sep 17 00:00:00 2001 From: soryu Date: Sun, 1 Feb 2026 00:45:24 +0000 Subject: fix(supervisor): ensure all implementation phases are executed before PR Previously the supervisor would implement only the first phase of a multi-phase plan and then create a PR. This change updates the supervisor system prompt to explicitly instruct it to: 1. Read and parse plan documents for multiple implementation phases 2. Execute phases sequentially 3. Track completion of each phase 4. Only create PR after ALL phases are complete Co-Authored-By: Claude Opus 4.5 --- makima/src/db/models.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'makima/src/db') diff --git a/makima/src/db/models.rs b/makima/src/db/models.rs index 636d81a..be3350b 100644 --- a/makima/src/db/models.rs +++ b/makima/src/db/models.rs @@ -1920,7 +1920,6 @@ pub struct TaskCheckpoint { /// Commit message pub message: String, /// Files changed in this commit: [{path, action: 'A'|'M'|'D'}] - #[sqlx(json)] pub files_changed: Option, /// Lines added in this commit pub lines_added: Option, -- cgit v1.2.3