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: 1 addition & 5 deletions crates/agent_ui/src/agent_panel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ use anyhow::{Context as _, Result, anyhow};
#[cfg(feature = "audio")]
use audio::{Audio, Sound};
use chrono::{DateTime, Utc};
use client::{UserStore, zed_urls};
use client::UserStore;
use cloud_api_types::Plan;
use collections::HashMap;
use editor::{Editor, MultiBuffer};
Expand Down Expand Up @@ -5690,10 +5690,6 @@ impl AgentPanel {
);
}

menu = menu.entry("Rules Library", None, |_window, cx| {
cx.open_url(&zed_urls::rules_docs(cx));
});

menu = menu.separator();
}

Expand Down
4 changes: 0 additions & 4 deletions crates/client/src/zed_urls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ pub fn skills_docs(cx: &App) -> String {
format!("{server_url}/docs/ai/skills", server_url = server_url(cx))
}

pub fn rules_docs(cx: &App) -> String {
format!("{server_url}/docs/ai/rules", server_url = server_url(cx))
}

/// Returns the URL to Zed's ACP registry blog post.
pub fn acp_registry_blog(cx: &App) -> String {
format!(
Expand Down
Loading