@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/commands/go.d.ts +4 -0
- package/dist/commands/go.js +959 -89
- package/dist/index.js +12 -1
- package/package.json +1 -1
- package/src/commands/go.ts +1039 -98
- package/src/index.ts +12 -1
package/src/index.ts
CHANGED
|
@@ -224,7 +224,18 @@ program
|
|
|
224
224
|
.alias('start')
|
|
225
225
|
.description('Start using CodeBakers instantly (no signup required)')
|
|
226
226
|
.option('-v, --verbose', 'Show detailed debug output for troubleshooting')
|
|
227
|
-
|
|
227
|
+
// Non-interactive flags for programmatic use (e.g., by AI assistants)
|
|
228
|
+
.option('-t, --type <type>', 'Project type: personal, client, or business')
|
|
229
|
+
.option('-n, --name <name>', 'Project name')
|
|
230
|
+
.option('-d, --describe <mode>', 'Description mode: guided, template, paste, chat, or files')
|
|
231
|
+
.option('--skip-review', 'Skip the review question for existing projects')
|
|
232
|
+
.action((options) => go({
|
|
233
|
+
verbose: options.verbose,
|
|
234
|
+
type: options.type,
|
|
235
|
+
name: options.name,
|
|
236
|
+
describe: options.describe,
|
|
237
|
+
skipReview: options.skipReview,
|
|
238
|
+
}));
|
|
228
239
|
|
|
229
240
|
program
|
|
230
241
|
.command('extend')
|