@ekkos/cli 1.2.8 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/init.js +11 -0
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -470,11 +470,22 @@ async function init(options) {
|
|
|
470
470
|
}
|
|
471
471
|
// Summary with prominent next step
|
|
472
472
|
const ideNames = installedIDEs.map(id => id === 'claude' ? 'Claude Code' : id === 'cursor' ? 'Cursor' : 'Windsurf');
|
|
473
|
+
const mcpPaths = {
|
|
474
|
+
claude: platform_1.CLAUDE_CONFIG,
|
|
475
|
+
cursor: platform_1.CURSOR_MCP,
|
|
476
|
+
windsurf: platform_1.WINDSURF_MCP
|
|
477
|
+
};
|
|
473
478
|
console.log('');
|
|
474
479
|
console.log(chalk_1.default.green.bold('╔═══════════════════════════════════════╗'));
|
|
475
480
|
console.log(chalk_1.default.green.bold('║ ✓ Setup complete! ║'));
|
|
476
481
|
console.log(chalk_1.default.green.bold('╚═══════════════════════════════════════╝'));
|
|
477
482
|
console.log('');
|
|
483
|
+
console.log(chalk_1.default.white.bold(' MCP configured:'));
|
|
484
|
+
for (const ide of installedIDEs) {
|
|
485
|
+
const name = ide === 'claude' ? 'Claude Code' : ide === 'cursor' ? 'Cursor' : 'Windsurf';
|
|
486
|
+
console.log(chalk_1.default.gray(` ${name} → ${mcpPaths[ide]}`));
|
|
487
|
+
}
|
|
488
|
+
console.log('');
|
|
478
489
|
console.log(chalk_1.default.yellow.bold(' NEXT STEPS:'));
|
|
479
490
|
console.log('');
|
|
480
491
|
console.log(chalk_1.default.white(` 1. Restart ${ideNames.join(' / ')}`));
|