From b00ca6e8f095fa20d5047de9c0f289c99f7d05ba Mon Sep 17 00:00:00 2001 From: dj-oyu <68707227+dj-oyu@users.noreply.github.com> Date: Fri, 20 Feb 2026 18:14:27 +0900 Subject: [PATCH] style: use code blocks for skill descriptions in /skills output Co-Authored-By: Claude Opus 4.6 --- pkg/agent/loop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/agent/loop.go b/pkg/agent/loop.go index 61f4f6b31..fbc001791 100644 --- a/pkg/agent/loop.go +++ b/pkg/agent/loop.go @@ -1340,7 +1340,7 @@ func (al *AgentLoop) handleSkillsCommand() string { for _, s := range skillsList { 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("```\n%s\n```\n", s.Description)) } } sb.WriteString("\nUse: /skill [message]")