From 04e1e8f0dd85d19917ac5ba0b73cba65ebac8976 Mon Sep 17 00:00:00 2001 From: soryu Date: Mon, 26 Jan 2026 20:19:30 +0000 Subject: Add completion phases --- makima/src/daemon/cli/supervisor.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'makima/src/daemon/cli/supervisor.rs') diff --git a/makima/src/daemon/cli/supervisor.rs b/makima/src/daemon/cli/supervisor.rs index 3bc8525..4f36fd8 100644 --- a/makima/src/daemon/cli/supervisor.rs +++ b/makima/src/daemon/cli/supervisor.rs @@ -220,6 +220,21 @@ pub struct AdvancePhaseArgs { pub phase: String, } +/// Arguments for mark-deliverable command. +#[derive(Args, Debug)] +pub struct MarkDeliverableArgs { + #[command(flatten)] + pub common: SupervisorArgs, + + /// The deliverable ID to mark as complete (e.g., 'plan-document', 'pull-request', 'research-notes') + #[arg(index = 1)] + pub deliverable_id: String, + + /// Phase the deliverable belongs to. Defaults to current contract phase if not specified. + #[arg(long)] + pub phase: Option, +} + /// Arguments for task command (get individual task details). #[derive(Args, Debug)] pub struct GetTaskArgs { -- cgit v1.2.3