diff options
| author | soryu <soryu@soryu.co> | 2026-01-31 23:07:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-31 23:07:56 +0000 |
| commit | 7567153e6281b94e39e52be5d060b381ed69597d (patch) | |
| tree | 1d7dd73756345f3671af32cc84b9b4235d34d173 /makima/src/daemon/cli/supervisor.rs | |
| parent | a6e36a8bfecb9ebe6c7b135b9e01557f7ebc3e58 (diff) | |
| parent | 44bb3fe07ab191abd8260af6975bc175c223878e (diff) | |
| download | soryu-7567153e6281b94e39e52be5d060b381ed69597d.tar.gz soryu-7567153e6281b94e39e52be5d060b381ed69597d.zip | |
Merge pull request #52 from soryu-co/makima/contract-management-improvements
feat: Add contract management system improvements (Phase 1)
Diffstat (limited to 'makima/src/daemon/cli/supervisor.rs')
| -rw-r--r-- | makima/src/daemon/cli/supervisor.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/makima/src/daemon/cli/supervisor.rs b/makima/src/daemon/cli/supervisor.rs index 9ad7aef..cb84ffa 100644 --- a/makima/src/daemon/cli/supervisor.rs +++ b/makima/src/daemon/cli/supervisor.rs @@ -218,6 +218,11 @@ pub struct AdvancePhaseArgs { /// The phase to advance to (specify, plan, execute, review) #[arg(index = 1)] pub phase: String, + + /// Confirm the phase transition (required when phase_guard is enabled). + /// Without this flag, the command will return deliverables for review. + #[arg(long, short = 'y')] + pub confirmed: bool, } /// Arguments for mark-deliverable command. |
