From 9a26974ba876b5211b3e63afb20c19539d9eb75e Mon Sep 17 00:00:00 2001 From: Dotta Date: Mon, 16 Mar 2026 18:49:58 -0500 Subject: [PATCH] Show skill namespace above name, exclude skill name from namespace In both the company skills list and agent skills tab, the skill key (e.g. org/repo/skill) is now split so only the namespace portion (org/repo) appears above the skill name, rather than the full key below it. Non-namespaced skills show no namespace line. Co-Authored-By: Paperclip --- ui/src/pages/AgentDetail.tsx | 6 +++++- ui/src/pages/CompanySkills.tsx | 8 +++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ui/src/pages/AgentDetail.tsx b/ui/src/pages/AgentDetail.tsx index 7e8a912b..64f4c00b 100644 --- a/ui/src/pages/AgentDetail.tsx +++ b/ui/src/pages/AgentDetail.tsx @@ -1469,8 +1469,12 @@ function AgentSkillsTab({
+ {skill.key.includes("/") && ( +
+ {skill.key.split("/").slice(0, -1).join("/")} +
+ )} {skill.name} -
{skill.key}
{skill.linkTo ? ( {source.managedLabel} + {skill.key.includes("/") && ( + + {skill.key.split("/").slice(0, -1).join("/")} + + )} {skill.name} - - {skill.key} -