From 9722a76bdb0b4afe53a5120c6a70747aae2edb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davor=20Raci=C4=87?= Date: Mon, 9 Feb 2026 07:29:33 +0100 Subject: [PATCH] fix: remove duplicate 'recompilation complete' message in compile-agents output The spinner.stop() in compileAgents() already displays this message, so the additional log.success() call produced a redundant line. Co-Authored-By: Claude Opus 4.6 --- tools/cli/commands/install.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/cli/commands/install.js b/tools/cli/commands/install.js index 961a1a9fa..d2bac23e2 100644 --- a/tools/cli/commands/install.js +++ b/tools/cli/commands/install.js @@ -60,7 +60,6 @@ module.exports = { // Handle compile agents separately if (config.actionType === 'compile-agents') { const result = await installer.compileAgents(config); - await prompts.log.success('Agent recompilation complete!'); await prompts.log.info(`Recompiled ${result.agentCount} agents with customizations applied`); process.exit(0); return;