From 5afbfdf7c1fde90e9ad540bf03f8d1486889be7b Mon Sep 17 00:00:00 2001 From: yoav0gal Date: Fri, 5 Sep 2025 18:16:33 +0300 Subject: [PATCH] removed gemini-extension.json --- tools/installer/lib/ide-setup.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tools/installer/lib/ide-setup.js b/tools/installer/lib/ide-setup.js index 432c2028..db045425 100644 --- a/tools/installer/lib/ide-setup.js +++ b/tools/installer/lib/ide-setup.js @@ -1217,16 +1217,6 @@ class IdeSetup extends BaseIdeSetup { await fileManager.ensureDirectory(agentCommandsDir); await fileManager.ensureDirectory(taskCommandsDir); - // Create gemini-extension.json manifest - const manifestPath = path.join(bmadCommandsDir, 'gemini-extension.json'); - const manifestContent = { - name: 'bmad', - version: '1.0.0', - description: 'BMAD Method Agents and Tasks and Commands', - }; - await fileManager.writeFile(manifestPath, JSON.stringify(manifestContent, null, 2)); - console.log(chalk.green('✓ Created gemini-extension.json manifest')); - // Process Agents const agents = selectedAgent ? [selectedAgent] : await this.getAllAgentIds(installDir); for (const agentId of agents) {