@codebakers/cli 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -521,8 +521,13 @@ program.command("status").description("Check CodeBakers configuration status").a
521
521
  console.log(chalk2.red("\u2717 No API key configured"));
522
522
  console.log(chalk2.dim(" Run: codebakers setup"));
523
523
  }
524
+ const apiUrl = getApiUrl();
524
525
  console.log(chalk2.dim(`
525
- Config path: ${getConfigPath()}
526
+ API URL: ${apiUrl}`));
527
+ if (apiUrl !== "https://codebakers.ai") {
528
+ console.log(chalk2.yellow("\u26A0 Warning: API URL is not the default. Run `codebakers logout` to reset."));
529
+ }
530
+ console.log(chalk2.dim(`Config path: ${getConfigPath()}
526
531
  `));
527
532
  });
528
533
  program.command("logout").description("Remove stored API key").action(async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "CodeBakers CLI - AI prompt patterns for production-ready code",
5
5
  "main": "dist/index.js",
6
6
  "bin": {