diff options
| author | soryu <soryu@soryu.co> | 2026-02-01 00:45:24 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-02-01 02:39:52 +0000 |
| commit | d0062efd34dfc22c2d8cfee0a47431ac0c8adfda (patch) | |
| tree | 5605da5d1090b8cb578d95ddc985472bc990dcc4 /makima/src/db | |
| parent | 11a4c81fc60848c7c74cab2f6fca8086e487ae20 (diff) | |
| download | soryu-d0062efd34dfc22c2d8cfee0a47431ac0c8adfda.tar.gz soryu-d0062efd34dfc22c2d8cfee0a47431ac0c8adfda.zip | |
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 <noreply@anthropic.com>
Diffstat (limited to 'makima/src/db')
| -rw-r--r-- | makima/src/db/models.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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<serde_json::Value>, /// Lines added in this commit pub lines_added: Option<i32>, |
