diff --git a/server/command.go b/server/command.go index 3c85a8c..5252d1d 100644 --- a/server/command.go +++ b/server/command.go @@ -150,7 +150,7 @@ func (p *Plugin) listPersonas() string { for _, id := range ids { desc := personaLibrary[id] // Indent continuation lines so multi-line descriptions stay readable. - indented := strings.ReplaceAll(desc, "\n", "\n "+strings.Repeat(" ", 14)) + indented := strings.ReplaceAll(desc, "\n", "\n "+strings.Repeat(" ", 13)) b.WriteString(fmt.Sprintf(" %-12s %s\n", id, indented)) } b.WriteString("```\nUse /ai persona to switch.")