From 25b2b4617175d75279186dac5f4317e62dc09658 Mon Sep 17 00:00:00 2001 From: typebasedio Date: Tue, 21 Apr 2026 17:06:32 -0400 Subject: [PATCH] feat(v0.4): add Force to LaunchOpts (no-op until Phase 9) --- internal/session/run.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/session/run.go b/internal/session/run.go index af10ee1..4a27c7f 100644 --- a/internal/session/run.go +++ b/internal/session/run.go @@ -17,6 +17,11 @@ type LaunchOpts struct { Mode string Slug string Shell bool // true = interactive shell, false = agent + + // Force suppresses both the active-session warning (Layer 1) and the + // stale-workspace warning (Layer 3). It does NOT disable the metadata + // write lock or the session summary. Used for scripted/automated runs. + Force bool } // manifestStartPath returns the path to the start manifest file.