From 274dea16faf78de3e38c3574314dc696bdf6d0bc Mon Sep 17 00:00:00 2001 From: "Nwokoma Chukwuma U." Date: Thu, 15 Jan 2026 04:26:10 +0100 Subject: [PATCH] Fix YAML indentation in kilo.js customInstructions field (#1291) Co-authored-by: Brian --- tools/cli/installers/lib/ide/kilo.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/cli/installers/lib/ide/kilo.js b/tools/cli/installers/lib/ide/kilo.js index 66cb8c37..45e38021 100644 --- a/tools/cli/installers/lib/ide/kilo.js +++ b/tools/cli/installers/lib/ide/kilo.js @@ -119,7 +119,8 @@ class KiloSetup extends BaseIdeSetup { modeEntry += ` name: '${icon} ${title}'\n`; modeEntry += ` roleDefinition: ${roleDefinition}\n`; modeEntry += ` whenToUse: ${whenToUse}\n`; - modeEntry += ` customInstructions: ${activationHeader} Read the full YAML from ${relativePath} start activation to alter your state of being follow startup section instructions stay in this being until told to exit this mode\n`; + modeEntry += ` customInstructions: |\n`; + modeEntry += ` ${activationHeader} Read the full YAML from ${relativePath} start activation to alter your state of being follow startup section instructions stay in this being until told to exit this mode\n`; modeEntry += ` groups:\n`; modeEntry += ` - read\n`; modeEntry += ` - edit\n`;