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
1 change: 1 addition & 0 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@ default = [
"mcp_grouped_server_context",
"fork_from_command",
"context_window_usage_v2",
"context_window_usage_breakdown",

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] This promotes a user-facing UI path to Stable; please attach screenshots or a short screen recording showing the context-window breakdown working end to end.

"ambient_agents_command_line",
"ambient_agents_image_upload",
"scheduled_ambient_agents",
Expand Down
5 changes: 2 additions & 3 deletions crates/warp_features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,8 +519,8 @@ pub enum FeatureFlag {
/// Enables v2 of the context window usage UI.
ContextWindowUsageV2,

/// Dev-only: enables the expandable per-segment context window usage
/// breakdown in the conversation usage card.
/// Enables the expandable per-segment context window usage breakdown in
/// the conversation usage card.
ContextWindowUsageBreakdown,

/// Enables global search
Expand Down Expand Up @@ -1000,7 +1000,6 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
FeatureFlag::WarpControlCli,
FeatureFlag::TerminalLifecycleRecovery,
FeatureFlag::PromptCacheExpiryWarning,
FeatureFlag::ContextWindowUsageBreakdown,
FeatureFlag::JupyterNotebookRendering,
FeatureFlag::WaitForEventsParentRegistration,
FeatureFlag::McpJsonTreeView,
Expand Down
Loading