summaryrefslogtreecommitdiff
path: root/makima/src/daemon/ws/protocol.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-09 15:55:01 +0000
committersoryu <soryu@soryu.co>2026-02-09 15:55:01 +0000
commit339c1769379a851c4126021132573bd4b7994cf2 (patch)
tree8a9a3cdc9d86b3dc2e6883853fb7b22c21dd9e99 /makima/src/daemon/ws/protocol.rs
parentbfa7bd8d7609397f570f1cd9b83d2269abc0ed63 (diff)
downloadsoryu-339c1769379a851c4126021132573bd4b7994cf2.tar.gz
soryu-339c1769379a851c4126021132573bd4b7994cf2.zip
Set directive env vars correctly for daemon
Diffstat (limited to 'makima/src/daemon/ws/protocol.rs')
-rw-r--r--makima/src/daemon/ws/protocol.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/makima/src/daemon/ws/protocol.rs b/makima/src/daemon/ws/protocol.rs
index 574e864..834e139 100644
--- a/makima/src/daemon/ws/protocol.rs
+++ b/makima/src/daemon/ws/protocol.rs
@@ -524,6 +524,9 @@ pub enum DaemonCommand {
/// Task ID to share worktree with (supervisor's task ID). If Some, use that task's worktree instead of creating a new one.
#[serde(rename = "supervisorWorktreeTaskId", default, skip_serializing_if = "Option::is_none")]
supervisor_worktree_task_id: Option<Uuid>,
+ /// Directive ID if this task is associated with a directive.
+ #[serde(rename = "directiveId", default, skip_serializing_if = "Option::is_none")]
+ directive_id: Option<Uuid>,
},
/// Pause a running task.