@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.
- package/dist/mcp/server.js +11 -6
- package/package.json +1 -1
- package/src/mcp/server.ts +11 -6
package/dist/mcp/server.js
CHANGED
|
@@ -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
|
|
3774
|
-
response += `3.
|
|
3775
|
-
response +=
|
|
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
|
-
|
|
3778
|
-
response += `${
|
|
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 += `
|
|
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
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
|
|
4242
|
-
response += `3.
|
|
4243
|
-
response +=
|
|
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
|
-
|
|
4246
|
-
response += `${
|
|
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 += `
|
|
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
|
}
|