From a2646a828febbdac798a206655a15eae7e463bca Mon Sep 17 00:00:00 2001 From: soryu Date: Mon, 9 Feb 2026 02:35:36 +0000 Subject: Add directive init --- makima/src/daemon/cli/directive.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'makima/src/daemon/cli/directive.rs') diff --git a/makima/src/daemon/cli/directive.rs b/makima/src/daemon/cli/directive.rs index 5de60ed..cd94a56 100644 --- a/makima/src/daemon/cli/directive.rs +++ b/makima/src/daemon/cli/directive.rs @@ -99,3 +99,14 @@ pub struct UpdateGoalArgs { /// New goal text pub goal: String, } + +/// Arguments for batch-add-steps command. +#[derive(Args, Debug)] +pub struct BatchAddStepsArgs { + #[command(flatten)] + pub common: DirectiveArgs, + + /// JSON array of steps: [{"name":"...","description":"...","taskPlan":"...","dependsOn":[],"orderIndex":0}] + #[arg(long)] + pub json: String, +} -- cgit v1.2.3