@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/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
|
-
|
|
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')
|