diff --git a/surfaces/gui/src/components/PersonaView.tsx b/surfaces/gui/src/components/PersonaView.tsx index c4692a58..1f52b93f 100644 --- a/surfaces/gui/src/components/PersonaView.tsx +++ b/surfaces/gui/src/components/PersonaView.tsx @@ -182,11 +182,6 @@ export function PersonaView({

{fullPersonaName(detail.name, personaId)} - {detail.default && ( - - ★ - - )}

{detail.tagline}

diff --git a/surfaces/gui/src/components/PersonasTab.tsx b/surfaces/gui/src/components/PersonasTab.tsx index 1d2b9df7..608b364b 100644 --- a/surfaces/gui/src/components/PersonasTab.tsx +++ b/surfaces/gui/src/components/PersonasTab.tsx @@ -151,42 +151,50 @@ export function PersonasTab({ const group = (title: string | null, list: Persona[]) => { if (list.length === 0) return null; return ( -
+
{title && ( -
- {title} -
+
{title}
)}
{list.map((p) => (
-
- {p.name} - {p.default && ( - - )} -
+
{p.name}
{p.tagline}
- - next ? toggle(p.id, { enabled: true }) : requestDisable(p) - } - title={p.enabled ? "Disable this coworker" : "Enable this coworker"} - /> - {onOpenPersona && ( - + Default + + ) : ( + <> + + next ? toggle(p.id, { enabled: true }) : requestDisable(p) + } + title={p.enabled ? "Disable this coworker" : "Enable this coworker"} + /> + {onOpenPersona && ( + + )} + )}
{confirmOff === p.id && ( diff --git a/surfaces/gui/src/components/SettingsView.tsx b/surfaces/gui/src/components/SettingsView.tsx index f5c92af2..96ba748d 100644 --- a/surfaces/gui/src/components/SettingsView.tsx +++ b/surfaces/gui/src/components/SettingsView.tsx @@ -388,8 +388,7 @@ function PersonasSection({ onOpenPersona }: { onOpenPersona?: (id: string) => vo

Coworkers are agents specialized for a particular role or task. They come equipped with the tools and skills to be successful in that role. Enabling a coworker lets - you pick it when starting a conversation — the starred one is the default for new - sessions. + you pick it when starting a conversation.