@codebakers/cli 1.0.4 → 1.0.6
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/index.js +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -198,7 +198,8 @@ Validation failed: ${validation.error || "Unknown error"}`));
|
|
|
198
198
|
}
|
|
199
199
|
console.log(chalk.bold.green("\n\u{1F389} Setup complete!\n"));
|
|
200
200
|
if (ide === "claude-code") {
|
|
201
|
-
console.log(chalk.dim("Next step - add CodeBakers to Claude Code:"));
|
|
201
|
+
console.log(chalk.dim("Next step - add CodeBakers MCP server to Claude Code:"));
|
|
202
|
+
console.log(chalk.dim(" (Run this command inside Claude Code chat, NOT in terminal)\n"));
|
|
202
203
|
console.log(chalk.cyan(" /mcp add codebakers npx -y @codebakers/cli serve\n"));
|
|
203
204
|
} else if (ide) {
|
|
204
205
|
console.log(chalk.dim(`Pattern file created. Restart ${IDE_CONFIGS[ide].description} to load it.
|
|
@@ -521,8 +522,13 @@ program.command("status").description("Check CodeBakers configuration status").a
|
|
|
521
522
|
console.log(chalk2.red("\u2717 No API key configured"));
|
|
522
523
|
console.log(chalk2.dim(" Run: codebakers setup"));
|
|
523
524
|
}
|
|
525
|
+
const apiUrl = getApiUrl();
|
|
524
526
|
console.log(chalk2.dim(`
|
|
525
|
-
|
|
527
|
+
API URL: ${apiUrl}`));
|
|
528
|
+
if (apiUrl !== "https://codebakers.ai") {
|
|
529
|
+
console.log(chalk2.yellow("\u26A0 Warning: API URL is not the default. Run `codebakers logout` to reset."));
|
|
530
|
+
}
|
|
531
|
+
console.log(chalk2.dim(`Config path: ${getConfigPath()}
|
|
526
532
|
`));
|
|
527
533
|
});
|
|
528
534
|
program.command("logout").description("Remove stored API key").action(async () => {
|