@codebakers/cli 3.9.11 → 3.9.12

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.
@@ -1074,11 +1074,17 @@ async function go(options = {}) {
1074
1074
  console.log(chalk_1.default.white(' What was set up:'));
1075
1075
  console.log(chalk_1.default.gray(' • CLAUDE.md - AI instructions for this project'));
1076
1076
  console.log(chalk_1.default.gray(' • .codebakers.json - Project configuration'));
1077
- console.log(chalk_1.default.gray(' • MCP server - Registered with Claude Code\n'));
1078
- console.log(chalk_1.default.yellow(' ⚠️ To activate your trial or login:\n'));
1079
- console.log(chalk_1.default.white(' Open a terminal and run:'));
1080
- console.log(chalk_1.default.cyan(' codebakers go\n'));
1081
- console.log(chalk_1.default.gray(' This requires an interactive terminal for authentication.\n'));
1077
+ console.log(chalk_1.default.gray(' • MCP server - Registered in Claude Code config\n'));
1078
+ console.log(chalk_1.default.yellow(' ⚠️ RESTART REQUIRED to load MCP tools\n'));
1079
+ console.log(chalk_1.default.white(' The CodeBakers MCP server was registered, but Claude Code'));
1080
+ console.log(chalk_1.default.white(' needs to restart to load it.\n'));
1081
+ console.log(chalk_1.default.cyan(' To restart Claude Code:\n'));
1082
+ console.log(chalk_1.default.gray(' Option 1: ') + chalk_1.default.white('Press ') + chalk_1.default.cyan('Ctrl+C') + chalk_1.default.white(' and run ') + chalk_1.default.cyan('claude') + chalk_1.default.white(' again'));
1083
+ console.log(chalk_1.default.gray(' Option 2: ') + chalk_1.default.white('In VS Code: ') + chalk_1.default.cyan('Cmd/Ctrl+Shift+P') + chalk_1.default.white(' → "Reload Window"\n'));
1084
+ console.log(chalk_1.default.white(' After restart, MCP tools (discover_patterns, validate_complete)'));
1085
+ console.log(chalk_1.default.white(' will be available.\n'));
1086
+ console.log(chalk_1.default.gray(' ─────────────────────────────────────────────────────────\n'));
1087
+ console.log(chalk_1.default.gray(' Optional: To activate trial, run ') + chalk_1.default.cyan('codebakers go') + chalk_1.default.gray(' in a terminal.\n'));
1082
1088
  return;
1083
1089
  }
1084
1090
  console.log(chalk_1.default.blue(`
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ const api_js_1 = require("./lib/api.js");
34
34
  // ============================================
35
35
  // Automatic Update Notification
36
36
  // ============================================
37
- const CURRENT_VERSION = '3.9.11';
37
+ const CURRENT_VERSION = '3.9.12';
38
38
  // Simple semver comparison: returns true if v1 > v2
39
39
  function isNewerVersion(v1, v2) {
40
40
  const parts1 = v1.split('.').map(Number);
@@ -210,7 +210,7 @@ const program = new commander_1.Command();
210
210
  program
211
211
  .name('codebakers')
212
212
  .description('CodeBakers CLI - Production patterns for AI-assisted development')
213
- .version('3.9.11');
213
+ .version('3.9.12');
214
214
  // Zero-friction trial entry (no signup required)
215
215
  program
216
216
  .command('go')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "3.9.11",
3
+ "version": "3.9.12",
4
4
  "description": "CodeBakers CLI - Production patterns for AI-assisted development",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1210,12 +1210,18 @@ export async function go(options: GoOptions = {}): Promise<void> {
1210
1210
  console.log(chalk.white(' What was set up:'));
1211
1211
  console.log(chalk.gray(' • CLAUDE.md - AI instructions for this project'));
1212
1212
  console.log(chalk.gray(' • .codebakers.json - Project configuration'));
1213
- console.log(chalk.gray(' • MCP server - Registered with Claude Code\n'));
1214
-
1215
- console.log(chalk.yellow(' ⚠️ To activate your trial or login:\n'));
1216
- console.log(chalk.white(' Open a terminal and run:'));
1217
- console.log(chalk.cyan(' codebakers go\n'));
1218
- console.log(chalk.gray(' This requires an interactive terminal for authentication.\n'));
1213
+ console.log(chalk.gray(' • MCP server - Registered in Claude Code config\n'));
1214
+
1215
+ console.log(chalk.yellow(' ⚠️ RESTART REQUIRED to load MCP tools\n'));
1216
+ console.log(chalk.white(' The CodeBakers MCP server was registered, but Claude Code'));
1217
+ console.log(chalk.white(' needs to restart to load it.\n'));
1218
+ console.log(chalk.cyan(' To restart Claude Code:\n'));
1219
+ console.log(chalk.gray(' Option 1: ') + chalk.white('Press ') + chalk.cyan('Ctrl+C') + chalk.white(' and run ') + chalk.cyan('claude') + chalk.white(' again'));
1220
+ console.log(chalk.gray(' Option 2: ') + chalk.white('In VS Code: ') + chalk.cyan('Cmd/Ctrl+Shift+P') + chalk.white(' → "Reload Window"\n'));
1221
+ console.log(chalk.white(' After restart, MCP tools (discover_patterns, validate_complete)'));
1222
+ console.log(chalk.white(' will be available.\n'));
1223
+ console.log(chalk.gray(' ─────────────────────────────────────────────────────────\n'));
1224
+ console.log(chalk.gray(' Optional: To activate trial, run ') + chalk.cyan('codebakers go') + chalk.gray(' in a terminal.\n'));
1219
1225
  return;
1220
1226
  }
1221
1227
 
package/src/index.ts CHANGED
@@ -34,7 +34,7 @@ import { join } from 'path';
34
34
  // Automatic Update Notification
35
35
  // ============================================
36
36
 
37
- const CURRENT_VERSION = '3.9.11';
37
+ const CURRENT_VERSION = '3.9.12';
38
38
 
39
39
  // Simple semver comparison: returns true if v1 > v2
40
40
  function isNewerVersion(v1: string, v2: string): boolean {
@@ -230,7 +230,7 @@ const program = new Command();
230
230
  program
231
231
  .name('codebakers')
232
232
  .description('CodeBakers CLI - Production patterns for AI-assisted development')
233
- .version('3.9.11');
233
+ .version('3.9.12');
234
234
 
235
235
  // Zero-friction trial entry (no signup required)
236
236
  program