Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions crates/warp_features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,8 @@ pub enum FeatureFlag {
/// Enables periodic workspace-handoff checkpoints during a cloud agent run,
/// rather than only uploading a workspace snapshot once at end-of-run.
/// Requires `OzHandoff` to also be enabled; a no-op for local runs and when
/// `--no-snapshot` is set. Off by default while the coordinator rolls out.
/// `--no-snapshot` is set. Enabled for dogfood and preview builds while the
/// coordinator bakes ahead of a stable rollout.
PeriodicHandoffCheckpoints,

/// Observes Ctrl-C (`0x03`) written on the shared-session viewer input
Expand Down Expand Up @@ -1068,7 +1069,6 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
FeatureFlag::McpJsonTreeView,
FeatureFlag::BoxDrawingGlyphs,
FeatureFlag::PricingTransparency,
FeatureFlag::PeriodicHandoffCheckpoints,
FeatureFlag::CtrlCCancelsThirdPartyHarness,
FeatureFlag::WarpingModelName,
FeatureFlag::LrcActivitySignal,
Expand All @@ -1081,6 +1081,7 @@ pub const PREVIEW_FLAGS: &[FeatureFlag] = &[
FeatureFlag::NativeShellCompletions,
FeatureFlag::ShellWidgetHandoff,
FeatureFlag::HistorySearchRankingV2,
FeatureFlag::PeriodicHandoffCheckpoints,
];

/// Features enabled for all release builds (i.e.: everything but WarpLocal).
Expand Down
Loading