From 95393d9b6837707bfa9ad1b5f1bdeac9066c3bdf Mon Sep 17 00:00:00 2001 From: Anton Bogdanovich <27antonb@gmail.com> Date: Tue, 5 May 2026 17:18:08 -0700 Subject: [PATCH] fix(seahorse): format scoped expand error --- pkg/seahorse/tool_expand.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/seahorse/tool_expand.go b/pkg/seahorse/tool_expand.go index 9589b3237..fbc4305f1 100644 --- a/pkg/seahorse/tool_expand.go +++ b/pkg/seahorse/tool_expand.go @@ -100,7 +100,9 @@ func (t *ExpandTool) Execute(ctx context.Context, args map[string]any) *tools.To return tools.ErrorResult("Expand failed: resolve current conversation: " + err.Error()) } if !found { - return tools.ErrorResult("Expand failed: no current conversation found for this session. Use all_conversations: true to expand across conversations.") + return tools.ErrorResult( + "Expand failed: no current conversation found for this session. Use all_conversations: true to expand across conversations.", + ) } }