From 53ed11b2affef96c2c696b513669430d31036f68 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Tue, 26 May 2026 17:49:22 -0300 Subject: [PATCH] Iterate on skill announcement copywriting (#57532) Tweaking a bit the content that will be displayed in the announcement toast. Release Notes: - N/A --- crates/auto_update_ui/src/auto_update_ui.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/auto_update_ui/src/auto_update_ui.rs b/crates/auto_update_ui/src/auto_update_ui.rs index 080f75ed9be..ca37bbb1b87 100644 --- a/crates/auto_update_ui/src/auto_update_ui.rs +++ b/crates/auto_update_ui/src/auto_update_ui.rs @@ -217,12 +217,12 @@ fn announcement_for_version(version: &Version, cx: &App) -> Option = Vec::with_capacity(3); bullet_items .push(format!("Skills live in {GLOBAL_SKILLS_DIR_DISPLAY}//SKILL.md").into()); + bullet_items.push("Type / to manually invoke a skill".into()); if migrated_anything { bullet_items.push( - "Default Rules are converted into your global AGENTS.md; all other rules become skills".into(), + "The Rules Library is making way for skills: your default rules are now in a global AGENTS.md, and your other rules have been converted to skills".into(), ); } - bullet_items.push("Type / to manually invoke a skill".into()); Some(AnnouncementContent { heading: "Introducing Skills Support".into(),