@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.
- package/dist/index.js +16 -21
- 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
|
-
|
|
201
|
-
console.log(chalk.green(`\u2713 ${greeting} ready to build!
|
|
200
|
+
console.log(chalk.green(`\u2713 ${greeting} ready to build!
|
|
202
201
|
`));
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
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) {
|