@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.
- package/dist/commands/go.js +11 -5
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/commands/go.ts +12 -6
- package/src/index.ts +2 -2
package/dist/commands/go.js
CHANGED
|
@@ -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
|
|
1078
|
-
console.log(chalk_1.default.yellow(' ⚠️
|
|
1079
|
-
console.log(chalk_1.default.white('
|
|
1080
|
-
console.log(chalk_1.default.
|
|
1081
|
-
console.log(chalk_1.default.
|
|
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.
|
|
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.
|
|
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
package/src/commands/go.ts
CHANGED
|
@@ -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
|
|
1214
|
-
|
|
1215
|
-
console.log(chalk.yellow(' ⚠️
|
|
1216
|
-
console.log(chalk.white('
|
|
1217
|
-
console.log(chalk.
|
|
1218
|
-
console.log(chalk.
|
|
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.
|
|
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.
|
|
233
|
+
.version('3.9.12');
|
|
234
234
|
|
|
235
235
|
// Zero-friction trial entry (no signup required)
|
|
236
236
|
program
|