Remove Agents Panel and utility panes - #49038
Merged
Merged
Conversation
Delete the agent_ui_v2 crate (AgentsPanel, AgentThreadPane) and the utility pane infrastructure from the workspace crate. The Agents Panel was a redundant panel gated behind the agent-v2 feature flag, and utility panes were only used by it.
These were introduced in the original agent v2 commit but are no longer used after removing the utility pane infrastructure.
- Remove 'agents' namespace from test_action_namespaces expected list - Update scroll offset in test_new_tab_scrolls_into_view_completely to account for simplified tab bar end section layout
rtfeldman
marked this pull request as ready for review
February 12, 2026 20:28
danilo-leal
added a commit
that referenced
this pull request
Feb 17, 2026
Fixing a minor UI issue that regressed in #49038. Release Notes: - N/A
jasonsmithio
pushed a commit
to paddleboarddev/paddleboard
that referenced
this pull request
May 31, 2026
Fixing a minor UI issue that regressed in zed-industries/zed#49038. Release Notes: - N/A
Dima-369
added a commit
to Dima-369/zed
that referenced
this pull request
Jul 17, 2026
* Remove smooth open/close animation from all docks Reverts the custom dock opening/closing animations that were added from PR zed-industries#48295 and the threads sidebar animation: - bottom/left/right panel docks (workspace render_dock + Dock::set_open) - threads sidebar dock (MultiWorkspace) Docks now open and close instantly again. Also drops the now-unused ease_out_cubic easing helper and its tests from gpui, and removes the corresponding 'Motion system' section from the README. The left/right agent utility panes this originally touched no longer exist upstream (removed in zed-industries#49038), so only dock.rs/multi_workspace.rs/ workspace.rs/animation.rs needed changes. * cargo fmt
jonx
pushed a commit
to jonx/zed-aros
that referenced
this pull request
Jul 17, 2026
Remove the `AgentsPanel` (from the `agent_ui_v2` crate) and the utility pane infrastructure from the codebase. The Agents Panel was a separate panel gated behind the `agent-v2` feature flag that was redundant with the existing Agent Panel. Utility panes were a layout concept (secondary panes next to the editor, separate from dock panels) whose only consumer was `AgentThreadPane` in the Agents Panel. ### Changes - Deleted the entire `agent_ui_v2` crate (`agents_panel.rs`, `agent_thread_pane.rs`) - Deleted `workspace/src/utility_pane.rs` - Removed `UtilityPane`, `UtilityPaneHandle`, `UtilityPanePosition`, `MinimizePane`, `ClosePane` from `workspace/src/dock.rs` - Removed all utility pane fields, methods, and render blocks from `workspace.rs` - Removed all aside toggle code from `pane.rs` and `pane_group.rs` - Removed `agents_panel_dock` setting from agent settings and `default.json` - Removed all `agent_ui_v2` references from `main.rs`, `zed.rs`, and Cargo.toml files - Cleaned up test code in `tool_permissions.rs` and `agent_ui.rs` Closes AI-17 (No release notes because this was all feature-flagged.) Release Notes: - N/A
jonx
pushed a commit
to jonx/zed-aros
that referenced
this pull request
Jul 17, 2026
Fixing a minor UI issue that regressed in zed-industries#49038. Release Notes: - N/A
jolutz
pushed a commit
to jolutz/zed
that referenced
this pull request
Aug 8, 2026
Remove the `AgentsPanel` (from the `agent_ui_v2` crate) and the utility pane infrastructure from the codebase. The Agents Panel was a separate panel gated behind the `agent-v2` feature flag that was redundant with the existing Agent Panel. Utility panes were a layout concept (secondary panes next to the editor, separate from dock panels) whose only consumer was `AgentThreadPane` in the Agents Panel. ### Changes - Deleted the entire `agent_ui_v2` crate (`agents_panel.rs`, `agent_thread_pane.rs`) - Deleted `workspace/src/utility_pane.rs` - Removed `UtilityPane`, `UtilityPaneHandle`, `UtilityPanePosition`, `MinimizePane`, `ClosePane` from `workspace/src/dock.rs` - Removed all utility pane fields, methods, and render blocks from `workspace.rs` - Removed all aside toggle code from `pane.rs` and `pane_group.rs` - Removed `agents_panel_dock` setting from agent settings and `default.json` - Removed all `agent_ui_v2` references from `main.rs`, `zed.rs`, and Cargo.toml files - Cleaned up test code in `tool_permissions.rs` and `agent_ui.rs` Closes AI-17 (No release notes because this was all feature-flagged.) Release Notes: - N/A
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove the
AgentsPanel(from theagent_ui_v2crate) and the utility pane infrastructure from the codebase.The Agents Panel was a separate panel gated behind the
agent-v2feature flag that was redundant with the existing Agent Panel. Utility panes were a layout concept (secondary panes next to the editor, separate from dock panels) whose only consumer wasAgentThreadPanein the Agents Panel.Changes
agent_ui_v2crate (agents_panel.rs,agent_thread_pane.rs)workspace/src/utility_pane.rsUtilityPane,UtilityPaneHandle,UtilityPanePosition,MinimizePane,ClosePanefromworkspace/src/dock.rsworkspace.rspane.rsandpane_group.rsagents_panel_docksetting from agent settings anddefault.jsonagent_ui_v2references frommain.rs,zed.rs, and Cargo.toml filestool_permissions.rsandagent_ui.rsCloses AI-17
(No release notes because this was all feature-flagged.)
Release Notes: