@codebakers/cli 3.8.6 → 3.8.8

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 CHANGED
@@ -202,7 +202,18 @@ program
202
202
  .alias('start')
203
203
  .description('Start using CodeBakers instantly (no signup required)')
204
204
  .option('-v, --verbose', 'Show detailed debug output for troubleshooting')
205
- .action((options) => (0, go_js_1.go)({ verbose: options.verbose }));
205
+ // Non-interactive flags for programmatic use (e.g., by AI assistants)
206
+ .option('-t, --type <type>', 'Project type: personal, client, or business')
207
+ .option('-n, --name <name>', 'Project name')
208
+ .option('-d, --describe <mode>', 'Description mode: guided, template, paste, chat, or files')
209
+ .option('--skip-review', 'Skip the review question for existing projects')
210
+ .action((options) => (0, go_js_1.go)({
211
+ verbose: options.verbose,
212
+ type: options.type,
213
+ name: options.name,
214
+ describe: options.describe,
215
+ skipReview: options.skipReview,
216
+ }));
206
217
  program
207
218
  .command('extend')
208
219
  .description('Extend your free trial with GitHub')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "3.8.6",
3
+ "version": "3.8.8",
4
4
  "description": "CodeBakers CLI - Production patterns for AI-assisted development",
5
5
  "main": "dist/index.js",
6
6
  "bin": {