summaryrefslogtreecommitdiff
path: root/makima/src/daemon/ws
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-26 20:27:40 +0000
committersoryu <soryu@soryu.co>2026-01-26 20:27:40 +0000
commitbffce4eede3d487071632808b6e990846e2e6973 (patch)
tree237ec9aff47057f93508e1e8759d2aa1ec00d1b8 /makima/src/daemon/ws
parent3dd8f32bad2b3ba886f0b0ab4c4796fd67ec0bca (diff)
parent950fd7e57538ccb20fab6100ad86951d8f6108b4 (diff)
downloadsoryu-bffce4eede3d487071632808b6e990846e2e6973.tar.gz
soryu-bffce4eede3d487071632808b6e990846e2e6973.zip
Phase 1.2 & 2.1: Skip auto-completion for local_only tasks
Diffstat (limited to 'makima/src/daemon/ws')
-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 2e7caef..ed651ec 100644
--- a/makima/src/daemon/ws/protocol.rs
+++ b/makima/src/daemon/ws/protocol.rs
@@ -422,6 +422,9 @@ pub enum DaemonCommand {
/// Commit SHA to apply the patch on top of.
#[serde(rename = "patchBaseSha", default, skip_serializing_if = "Option::is_none")]
patch_base_sha: Option<String>,
+ /// Whether the contract is in local-only mode (skips automatic completion actions).
+ #[serde(rename = "localOnly", default)]
+ local_only: bool,
},
/// Pause a running task.