From b042ef168abe0b94462ef51c204946ee6f866c26 Mon Sep 17 00:00:00 2001 From: Davor Racic Date: Fri, 11 Jul 2025 11:27:59 +0200 Subject: [PATCH] fix(ide-setup): change agent trigger symbol from @ to * The change was made to standardize the agent trigger symbol across the system and avoid confusion with other special characters. --- tools/installer/lib/ide-setup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/installer/lib/ide-setup.js b/tools/installer/lib/ide-setup.js index c5fc74a2..59ffb284 100644 --- a/tools/installer/lib/ide-setup.js +++ b/tools/installer/lib/ide-setup.js @@ -579,7 +579,7 @@ class IdeSetup { // Create properly formatted agent rule content (similar to trae) let agentRuleContent = `# ${agentId.toUpperCase()} Agent Rule\n\n`; - agentRuleContent += `This rule is triggered when the user types \`@${agentId}\` and activates the ${await this.getAgentTitle( + agentRuleContent += `This rule is triggered when the user types \`*${agentId}\` and activates the ${await this.getAgentTitle( agentId, installDir )} agent persona.\n\n`; @@ -601,7 +601,7 @@ class IdeSetup { const relativePath = path.relative(installDir, agentPath).replace(/\\/g, '/'); agentRuleContent += `The complete agent definition is available in [${relativePath}](${relativePath}).\n\n`; agentRuleContent += "## Usage\n\n"; - agentRuleContent += `When the user types \`@${agentId}\`, activate this ${await this.getAgentTitle( + agentRuleContent += `When the user types \`*${agentId}\`, activate this ${await this.getAgentTitle( agentId, installDir )} persona and follow all instructions defined in the YAML configuration above.\n`;