@codebakers/cli 3.9.23 → 3.9.25
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 +10 -4
- package/dist/lib/progress.js +2 -2
- package/package.json +1 -1
- package/src/commands/init.ts +12 -4
- package/src/lib/progress.ts +2 -2
package/dist/commands/init.js
CHANGED
|
@@ -997,10 +997,16 @@ function showSuccessMessage(projectName, isExisting, prdCreated) {
|
|
|
997
997
|
console.log(chalk_1.default.gray(' ✓ AI fetches patterns and generates code'));
|
|
998
998
|
console.log(chalk_1.default.gray(' ✓ AI updates tracking files as you work\n'));
|
|
999
999
|
}
|
|
1000
|
-
console.log(chalk_1.default.
|
|
1001
|
-
console.log(chalk_1.default.
|
|
1002
|
-
console.log(chalk_1.default.gray('
|
|
1003
|
-
console.log(chalk_1.default.
|
|
1000
|
+
console.log(chalk_1.default.yellow.bold(' ⚠️ RELOAD YOUR EDITOR FIRST:\n'));
|
|
1001
|
+
console.log(chalk_1.default.white(' For Cursor:'));
|
|
1002
|
+
console.log(chalk_1.default.gray(' 1. Press ') + chalk_1.default.cyan('Cmd+Shift+P') + chalk_1.default.gray(' (Mac) or ') + chalk_1.default.cyan('Ctrl+Shift+P') + chalk_1.default.gray(' (Windows)'));
|
|
1003
|
+
console.log(chalk_1.default.gray(' 2. Type ') + chalk_1.default.cyan('"Reload Window"') + chalk_1.default.gray(' and press Enter'));
|
|
1004
|
+
console.log(chalk_1.default.gray(' 3. Press ') + chalk_1.default.cyan('Cmd+L') + chalk_1.default.gray(' / ') + chalk_1.default.cyan('Ctrl+L') + chalk_1.default.gray(' to open chat\n'));
|
|
1005
|
+
console.log(chalk_1.default.white(' For VS Code + Claude Code:'));
|
|
1006
|
+
console.log(chalk_1.default.gray(' 1. Press ') + chalk_1.default.cyan('Cmd+Shift+P') + chalk_1.default.gray(' (Mac) or ') + chalk_1.default.cyan('Ctrl+Shift+P') + chalk_1.default.gray(' (Windows)'));
|
|
1007
|
+
console.log(chalk_1.default.gray(' 2. Type ') + chalk_1.default.cyan('"Reload Window"') + chalk_1.default.gray(' and press Enter'));
|
|
1008
|
+
console.log(chalk_1.default.gray(' 3. Click the Claude icon in the sidebar to chat\n'));
|
|
1009
|
+
console.log(chalk_1.default.green(' After reloading, CodeBakers patterns will be active! 🚀\n'));
|
|
1004
1010
|
}
|
|
1005
1011
|
// ============================================================================
|
|
1006
1012
|
// MAIN INIT FUNCTION
|
package/dist/lib/progress.js
CHANGED
|
@@ -151,10 +151,10 @@ function getSubscriptionError() {
|
|
|
151
151
|
title: 'Subscription Required',
|
|
152
152
|
message: 'This feature requires an active subscription.',
|
|
153
153
|
recovery: [
|
|
154
|
-
'Visit codebakers.ai/
|
|
154
|
+
'Visit codebakers.ai/dashboard/billing to subscribe',
|
|
155
155
|
'Start a free trial with: codebakers setup',
|
|
156
156
|
'Contact support if you believe this is an error',
|
|
157
157
|
],
|
|
158
|
-
helpUrl: 'https://codebakers.ai/
|
|
158
|
+
helpUrl: 'https://www.codebakers.ai/dashboard/billing',
|
|
159
159
|
};
|
|
160
160
|
}
|
package/package.json
CHANGED
package/src/commands/init.ts
CHANGED
|
@@ -1093,11 +1093,19 @@ function showSuccessMessage(projectName: string, isExisting: boolean, prdCreated
|
|
|
1093
1093
|
console.log(chalk.gray(' ✓ AI updates tracking files as you work\n'));
|
|
1094
1094
|
}
|
|
1095
1095
|
|
|
1096
|
-
console.log(chalk.
|
|
1097
|
-
console.log(chalk.gray(' For Cursor: Just open the project and start chatting'));
|
|
1098
|
-
console.log(chalk.gray(' For Claude Code: Run ') + chalk.cyan('codebakers install-hook') + chalk.gray(' first\n'));
|
|
1096
|
+
console.log(chalk.yellow.bold(' ⚠️ RELOAD YOUR EDITOR FIRST:\n'));
|
|
1099
1097
|
|
|
1100
|
-
console.log(chalk.
|
|
1098
|
+
console.log(chalk.white(' For Cursor:'));
|
|
1099
|
+
console.log(chalk.gray(' 1. Press ') + chalk.cyan('Cmd+Shift+P') + chalk.gray(' (Mac) or ') + chalk.cyan('Ctrl+Shift+P') + chalk.gray(' (Windows)'));
|
|
1100
|
+
console.log(chalk.gray(' 2. Type ') + chalk.cyan('"Reload Window"') + chalk.gray(' and press Enter'));
|
|
1101
|
+
console.log(chalk.gray(' 3. Press ') + chalk.cyan('Cmd+L') + chalk.gray(' / ') + chalk.cyan('Ctrl+L') + chalk.gray(' to open chat\n'));
|
|
1102
|
+
|
|
1103
|
+
console.log(chalk.white(' For VS Code + Claude Code:'));
|
|
1104
|
+
console.log(chalk.gray(' 1. Press ') + chalk.cyan('Cmd+Shift+P') + chalk.gray(' (Mac) or ') + chalk.cyan('Ctrl+Shift+P') + chalk.gray(' (Windows)'));
|
|
1105
|
+
console.log(chalk.gray(' 2. Type ') + chalk.cyan('"Reload Window"') + chalk.gray(' and press Enter'));
|
|
1106
|
+
console.log(chalk.gray(' 3. Click the Claude icon in the sidebar to chat\n'));
|
|
1107
|
+
|
|
1108
|
+
console.log(chalk.green(' After reloading, CodeBakers patterns will be active! 🚀\n'));
|
|
1101
1109
|
}
|
|
1102
1110
|
|
|
1103
1111
|
// ============================================================================
|
package/src/lib/progress.ts
CHANGED
|
@@ -183,10 +183,10 @@ export function getSubscriptionError(): FriendlyError {
|
|
|
183
183
|
title: 'Subscription Required',
|
|
184
184
|
message: 'This feature requires an active subscription.',
|
|
185
185
|
recovery: [
|
|
186
|
-
'Visit codebakers.ai/
|
|
186
|
+
'Visit codebakers.ai/dashboard/billing to subscribe',
|
|
187
187
|
'Start a free trial with: codebakers setup',
|
|
188
188
|
'Contact support if you believe this is an error',
|
|
189
189
|
],
|
|
190
|
-
helpUrl: 'https://codebakers.ai/
|
|
190
|
+
helpUrl: 'https://www.codebakers.ai/dashboard/billing',
|
|
191
191
|
};
|
|
192
192
|
}
|