Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,10 @@ default = [
"configurable_context_window",
"oz_handoff",
"handoff_local_cloud",
"orchestration_v2",
"orchestration_pill_bar",
"orchestration_viewer_pill_bar",
"run_agents_tool",
Comment on lines +634 to +637

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [IMPORTANT] For this user-facing stable rollout, please include screenshots or a screen recording demonstrating the orchestration UI working end to end.

"pending_user_query_indicator",
]
# Enable this feature to automatically perform heap profiling. NOTE: This will
Expand Down Expand Up @@ -912,6 +916,8 @@ incremental_auto_reload = []
orchestration = []
orchestration_v2 = ["orchestration"]
orchestration_pill_bar = []
orchestration_viewer_pill_bar = []
run_agents_tool = []
pending_user_query_indicator = []
queue_slash_command = []
inline_menu_headers = []
Expand Down
4 changes: 4 additions & 0 deletions app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2907,6 +2907,10 @@ pub fn enabled_features() -> HashSet<FeatureFlag> {
FeatureFlag::OrchestrationV2,
#[cfg(feature = "orchestration_pill_bar")]
FeatureFlag::OrchestrationPillBar,
#[cfg(feature = "orchestration_viewer_pill_bar")]
FeatureFlag::OrchestrationViewerPillBar,
#[cfg(feature = "run_agents_tool")]
FeatureFlag::RunAgentsTool,
#[cfg(feature = "pending_user_query_indicator")]
FeatureFlag::PendingUserQueryIndicator,
#[cfg(feature = "queue_slash_command")]
Expand Down
6 changes: 0 additions & 6 deletions crates/warp_features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,6 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
FeatureFlag::ConversationApi,
FeatureFlag::RememberFastForwardState,
FeatureFlag::HOANotifications,
FeatureFlag::OrchestrationViewerPillBar,
FeatureFlag::GeminiNotifications,
FeatureFlag::LocalDockerSandbox,
FeatureFlag::CloudModeSetupV2,
Expand All @@ -958,11 +957,6 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
/// Features enabled for feature preview build users (e.g.: Friends of Warp).
/// All PREVIEW_FLAGS are also automatically added to dogfood builds (WarpDev).
pub const PREVIEW_FLAGS: &[FeatureFlag] = &[
FeatureFlag::Orchestration,
FeatureFlag::OrchestrationV2,
FeatureFlag::OrchestrationPillBar,
FeatureFlag::OrchestrationViewerPillBar,
FeatureFlag::RunAgentsTool,
FeatureFlag::BlocklistMarkdownTableRendering,
FeatureFlag::MarkdownTables,
FeatureFlag::GitOperationsInCodeReview,
Expand Down
Loading