From 69bd7b3177fe974e0c98843569702a150436b12c Mon Sep 17 00:00:00 2001 From: Mukunda Rao Katta Date: Sun, 26 Apr 2026 13:51:31 -0700 Subject: [PATCH 1/2] fix(client): prefer title over name in Prompts list --- client/src/components/PromptsTab.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/components/PromptsTab.tsx b/client/src/components/PromptsTab.tsx index fd28a386b..4c08110b0 100644 --- a/client/src/components/PromptsTab.tsx +++ b/client/src/components/PromptsTab.tsx @@ -18,6 +18,7 @@ import IconDisplay, { WithIcons } from "./IconDisplay"; export type Prompt = { name: string; + title?: string; description?: string; arguments?: { name: string; @@ -120,7 +121,7 @@ const PromptsTab = ({
- {prompt.name} + {prompt.title || prompt.name} {prompt.description} @@ -143,7 +144,9 @@ const PromptsTab = ({ /> )}

- {selectedPrompt ? selectedPrompt.name : "Select a prompt"} + {selectedPrompt + ? selectedPrompt.title || selectedPrompt.name + : "Select a prompt"}

From 8b286e8419b5fda775b67a28591e64b425cf2a9f Mon Sep 17 00:00:00 2001 From: Mukunda Rao Katta Date: Sun, 26 Apr 2026 13:51:40 -0700 Subject: [PATCH 2/2] fix(client): prefer title over name in Resources list --- client/src/components/ResourcesTab.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/client/src/components/ResourcesTab.tsx b/client/src/components/ResourcesTab.tsx index 36e5cec8f..897ae7a0f 100644 --- a/client/src/components/ResourcesTab.tsx +++ b/client/src/components/ResourcesTab.tsx @@ -135,7 +135,7 @@ const ResourcesTab = ({ )} - {resource.name} + {resource.title || resource.name} @@ -168,7 +168,7 @@ const ResourcesTab = ({ )} - {template.name} + {template.title || template.name} @@ -193,12 +193,16 @@ const ResourcesTab = ({ )}

{selectedResource - ? selectedResource.name + ? selectedResource.title || selectedResource.name : selectedTemplate - ? selectedTemplate.name + ? selectedTemplate.title || selectedTemplate.name : "Select a resource or template"}