@codebakers/cli 3.9.18 → 3.9.19

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.
@@ -3770,16 +3770,21 @@ If you want AI features and prefer Claude over GPT (or want both as fallback).`,
3770
3770
  else {
3771
3771
  response += `## Next Steps\n\n`;
3772
3772
  response += `1. Decide which services you actually need for your project\n`;
3773
- response += `2. Create accounts and get API keys for those services\n`;
3774
- response += `3. Add the keys to your \`.env.local\` file:\n\n`;
3775
- response += `\`\`\`bash\n`;
3773
+ response += `2. Create accounts and get API keys using the instructions above\n`;
3774
+ response += `3. **Paste your keys here in chat** and I'll add them to your \`.env.local\` file for you!\n\n`;
3775
+ response += `Example: Just paste something like:\n`;
3776
+ response += `\`\`\`\n`;
3777
+ response += `Here are my keys:\n`;
3776
3778
  for (const r of missing) {
3777
- for (const v of r.missingVars) {
3778
- response += `${v}=your_key_here\n`;
3779
+ if (r.missingVars.length > 0) {
3780
+ response += `${r.info.name}: sk-xxx... (your actual key)\n`;
3779
3781
  }
3780
3782
  }
3781
3783
  response += `\`\`\`\n\n`;
3782
- response += `4. Restart your dev server after adding keys\n\n`;
3784
+ response += `I'll automatically:\n`;
3785
+ response += `- Create \`.env.local\` if it doesn't exist\n`;
3786
+ response += `- Add the correct variable names\n`;
3787
+ response += `- Keep your existing env vars safe\n\n`;
3783
3788
  response += `**Don't need a service?** That's fine! Only configure what you'll actually use.\n`;
3784
3789
  }
3785
3790
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "3.9.18",
3
+ "version": "3.9.19",
4
4
  "description": "CodeBakers CLI - Production patterns for AI-assisted development",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/mcp/server.ts CHANGED
@@ -4238,16 +4238,21 @@ If you want AI features and prefer Claude over GPT (or want both as fallback).`,
4238
4238
  } else {
4239
4239
  response += `## Next Steps\n\n`;
4240
4240
  response += `1. Decide which services you actually need for your project\n`;
4241
- response += `2. Create accounts and get API keys for those services\n`;
4242
- response += `3. Add the keys to your \`.env.local\` file:\n\n`;
4243
- response += `\`\`\`bash\n`;
4241
+ response += `2. Create accounts and get API keys using the instructions above\n`;
4242
+ response += `3. **Paste your keys here in chat** and I'll add them to your \`.env.local\` file for you!\n\n`;
4243
+ response += `Example: Just paste something like:\n`;
4244
+ response += `\`\`\`\n`;
4245
+ response += `Here are my keys:\n`;
4244
4246
  for (const r of missing) {
4245
- for (const v of r.missingVars) {
4246
- response += `${v}=your_key_here\n`;
4247
+ if (r.missingVars.length > 0) {
4248
+ response += `${r.info.name}: sk-xxx... (your actual key)\n`;
4247
4249
  }
4248
4250
  }
4249
4251
  response += `\`\`\`\n\n`;
4250
- response += `4. Restart your dev server after adding keys\n\n`;
4252
+ response += `I'll automatically:\n`;
4253
+ response += `- Create \`.env.local\` if it doesn't exist\n`;
4254
+ response += `- Add the correct variable names\n`;
4255
+ response += `- Keep your existing env vars safe\n\n`;
4251
4256
  response += `**Don't need a service?** That's fine! Only configure what you'll actually use.\n`;
4252
4257
  }
4253
4258
  }