@codebakers/cli 1.0.8 → 1.0.9

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 -11
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -198,17 +198,12 @@ 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.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'));
201
+ console.log(chalk.green("\u2713 CodeBakers is ready! Start coding.\n"));
202
+ console.log(chalk.bold("Try it now:"));
203
+ console.log(chalk.cyan(' "Add a contact form to my app"\n'));
204
+ console.log(chalk.dim("What happens:"));
205
+ console.log(chalk.dim(" Your prompt \u2192 CodeBakers patterns \u2192 Production-ready code"));
206
+ console.log(chalk.dim(" with validation, error handling, loading states, and tests.\n"));
212
207
  } else if (ide) {
213
208
  console.log(chalk.dim(`Pattern file created. Restart ${IDE_CONFIGS[ide].description} to load it.
214
209
  `));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "CodeBakers CLI - AI prompt patterns for production-ready code",
5
5
  "main": "dist/index.js",
6
6
  "bin": {