From e9a9322199ab58038f69c830bbe440552e0ae8c1 Mon Sep 17 00:00:00 2001 From: Sviatoslav Abakumov Date: Wed, 3 Jun 2026 22:36:09 +0400 Subject: [PATCH] fix(coding-agent): add a space between the skill and user messages --- packages/coding-agent/src/modes/interactive/interactive-mode.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/coding-agent/src/modes/interactive/interactive-mode.ts b/packages/coding-agent/src/modes/interactive/interactive-mode.ts index b874495b..5ed40caf 100644 --- a/packages/coding-agent/src/modes/interactive/interactive-mode.ts +++ b/packages/coding-agent/src/modes/interactive/interactive-mode.ts @@ -3106,6 +3106,7 @@ export class InteractiveMode { this.chatContainer.addChild(component); // Render user message separately if present if (skillBlock.userMessage) { + this.chatContainer.addChild(new Spacer(1)); const userComponent = new UserMessageComponent( skillBlock.userMessage, this.getMarkdownThemeWithSettings(),