From 67ec7ee08f489175040afea73f31265170f307e2 Mon Sep 17 00:00:00 2001 From: dj-oyu <68707227+dj-oyu@users.noreply.github.com> Date: Fri, 20 Feb 2026 18:12:05 +0900 Subject: [PATCH] style: format /skills output with bold names and code descriptions Co-Authored-By: Claude Opus 4.6 --- pkg/agent/loop.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/agent/loop.go b/pkg/agent/loop.go index 7d973013c..61f4f6b31 100644 --- a/pkg/agent/loop.go +++ b/pkg/agent/loop.go @@ -1338,12 +1338,12 @@ func (al *AgentLoop) handleSkillsCommand() string { var sb strings.Builder sb.WriteString("Available Skills\n\n") for _, s := range skillsList { - sb.WriteString(fmt.Sprintf(" %s (%s)\n", s.Name, s.Source)) + sb.WriteString(fmt.Sprintf("**%s** (%s)\n", s.Name, s.Source)) if s.Description != "" { - sb.WriteString(fmt.Sprintf(" %s\n", s.Description)) + sb.WriteString(fmt.Sprintf("`%s`\n", s.Description)) } } - sb.WriteString(fmt.Sprintf("\nUse: /skill [message]")) + sb.WriteString("\nUse: /skill [message]") return sb.String() }