@codebakers/cli 1.0.6 → 1.0.8
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 +13 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -115,7 +115,7 @@ var IDE_CONFIGS = {
|
|
|
115
115
|
},
|
|
116
116
|
"claude-code": {
|
|
117
117
|
file: "CLAUDE.md",
|
|
118
|
-
description: "Claude Code
|
|
118
|
+
description: "Claude Code"
|
|
119
119
|
}
|
|
120
120
|
};
|
|
121
121
|
function setupCommand(program2) {
|
|
@@ -184,7 +184,7 @@ Validation failed: ${validation.error || "Unknown error"}`));
|
|
|
184
184
|
message: "Which AI coding tool are you using?",
|
|
185
185
|
choices: [
|
|
186
186
|
{ name: "Cursor", value: "cursor" },
|
|
187
|
-
{ name: "Claude Code (CLI)", value: "claude-code" },
|
|
187
|
+
{ name: "Claude Code (VS Code extension or CLI)", value: "claude-code" },
|
|
188
188
|
{ name: "Windsurf (Codeium)", value: "windsurf" },
|
|
189
189
|
{ name: "Aider", value: "aider" },
|
|
190
190
|
{ name: "Skip for now", value: null }
|
|
@@ -198,9 +198,17 @@ 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.
|
|
202
|
-
console.log(chalk.dim("
|
|
203
|
-
console.log(chalk.
|
|
201
|
+
console.log(chalk.green("\u2713 CodeBakers patterns are ready to use!\n"));
|
|
202
|
+
console.log(chalk.dim("Your patterns have been installed to:"));
|
|
203
|
+
console.log(chalk.dim(" \u2022 CLAUDE.md - Smart router for pattern selection"));
|
|
204
|
+
console.log(chalk.dim(" \u2022 .claude/ folder - All pattern modules\n"));
|
|
205
|
+
console.log(chalk.bold("Start using CodeBakers now:"));
|
|
206
|
+
console.log(chalk.dim(" Just ask Claude Code to help with your coding tasks."));
|
|
207
|
+
console.log(chalk.dim(" The patterns will be automatically applied based on context.\n"));
|
|
208
|
+
console.log(chalk.dim("Example prompts:"));
|
|
209
|
+
console.log(chalk.cyan(' "Build a login form with validation"'));
|
|
210
|
+
console.log(chalk.cyan(' "Add Stripe checkout to my app"'));
|
|
211
|
+
console.log(chalk.cyan(' "Create an API endpoint for users"\n'));
|
|
204
212
|
} else if (ide) {
|
|
205
213
|
console.log(chalk.dim(`Pattern file created. Restart ${IDE_CONFIGS[ide].description} to load it.
|
|
206
214
|
`));
|