@codebakers/cli 1.1.2 → 1.1.3

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 +16 -21
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -197,28 +197,23 @@ Validation failed: ${validation.error || "Unknown error"}`));
197
197
  const firstName = userName?.split(" ")[0];
198
198
  const greeting = firstName ? `${firstName}, you're` : "You're";
199
199
  console.log(chalk.bold.green("\n\u{1F389} Setup complete!\n"));
200
- if (ide) {
201
- console.log(chalk.green(`\u2713 ${greeting} ready to build!
200
+ console.log(chalk.green(`\u2713 ${greeting} ready to build!
202
201
  `));
203
- console.log(chalk.bold("How it works:"));
204
- console.log(chalk.dim(" 1. Patterns are fetched securely from CodeBakers API"));
205
- console.log(chalk.dim(" 2. No files stored locally - your subscription is protected"));
206
- console.log(chalk.dim(" 3. Always get the latest patterns automatically\n"));
207
- console.log(chalk.bold("You say:"));
208
- console.log(chalk.cyan(' "Add a contact form"\n'));
209
- console.log(chalk.bold("CodeBakers generates:"));
210
- console.log(chalk.dim(" \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510"));
211
- console.log(chalk.dim(" \u2502 ") + chalk.white("ContactForm component with:") + chalk.dim(" \u2502"));
212
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Zod schema validation (name, email, message) \u2502"));
213
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" React Hook Form with proper error display \u2502"));
214
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Loading spinner during submission \u2502"));
215
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Success/error toast notifications \u2502"));
216
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" API route with rate limiting \u2502"));
217
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Email integration (Resend) \u2502"));
218
- console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Accessible, responsive design \u2502"));
219
- console.log(chalk.dim(" \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n"));
220
- console.log(chalk.dim("Start building: just describe what you need.\n"));
221
- }
202
+ console.log(chalk.bold("4 Commands to Know:\n"));
203
+ console.log(chalk.cyan(" /build [idea]"));
204
+ console.log(chalk.dim(" Start a new project. AI asks questions, plans everything,"));
205
+ console.log(chalk.dim(" then builds phase by phase with tests.\n"));
206
+ console.log(chalk.cyan(" /feature [idea]"));
207
+ console.log(chalk.dim(" Add to an existing project. AI analyzes your codebase"));
208
+ console.log(chalk.dim(" and integrates the new feature properly.\n"));
209
+ console.log(chalk.cyan(" /status"));
210
+ console.log(chalk.dim(" See project progress, what's built, what's next.\n"));
211
+ console.log(chalk.cyan(" /audit"));
212
+ console.log(chalk.dim(" Review code quality, security, and get a score.\n"));
213
+ console.log(chalk.bold("Example:"));
214
+ console.log(chalk.white(" /build a project management tool for remote teams\n"));
215
+ console.log(chalk.dim("The AI will ask discovery questions, create a PRD, and"));
216
+ console.log(chalk.dim("build your app with production patterns + tests.\n"));
222
217
  });
223
218
  }
224
219
  async function configureIDE(ide, force = false) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "CodeBakers CLI - AI prompt patterns for production-ready code",
5
5
  "main": "dist/index.js",
6
6
  "bin": {