delimit-cli 3.14.1 → 3.14.2

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/bin/delimit-cli.js +40 -1
  2. package/package.json +1 -1
@@ -1332,7 +1332,29 @@ jobs:
1332
1332
  }
1333
1333
  console.log(` ${chalk.bold('delimit doctor')} — verify setup`);
1334
1334
  console.log(` ${chalk.bold('delimit explain')} — human-readable report`);
1335
- console.log('');
1335
+
1336
+ // Beta capture after init (LED-263)
1337
+ if (!options.yes) {
1338
+ try {
1339
+ const betaAns = await inquirer.prompt([{
1340
+ type: 'input',
1341
+ name: 'email',
1342
+ message: chalk.blue(' Join the beta? Enter your email (or press Enter to skip):'),
1343
+ }]);
1344
+ if (betaAns.email && betaAns.email.includes('@')) {
1345
+ try {
1346
+ await axios.post('https://delimit.ai/api/subscribe', { email: betaAns.email, source: 'cli-init' });
1347
+ console.log(chalk.green(' Thanks! You\'re on the list.\n'));
1348
+ } catch {
1349
+ console.log(chalk.green(' Thanks! Visit https://delimit.ai to stay updated.\n'));
1350
+ }
1351
+ } else {
1352
+ console.log('');
1353
+ }
1354
+ } catch {}
1355
+ } else {
1356
+ console.log('');
1357
+ }
1336
1358
  });
1337
1359
 
1338
1360
  // Demo command — prove governance value in 5 minutes (LED-262)
@@ -1495,6 +1517,23 @@ program
1495
1517
  console.log(` ${chalk.green('npx delimit-cli lint')} — lint your API spec`);
1496
1518
  console.log(` ${chalk.green('npx delimit-cli setup')} — configure AI assistants\n`);
1497
1519
 
1520
+ // Beta capture (LED-263)
1521
+ try {
1522
+ const betaAns = await inquirer.prompt([{
1523
+ type: 'input',
1524
+ name: 'email',
1525
+ message: chalk.blue('Join the beta? Enter your email (or press Enter to skip):'),
1526
+ }]);
1527
+ if (betaAns.email && betaAns.email.includes('@')) {
1528
+ try {
1529
+ await axios.post('https://delimit.ai/api/subscribe', { email: betaAns.email, source: 'cli-demo' });
1530
+ console.log(chalk.green('\n Thanks! You\'re on the list. We\'ll keep you in the loop.\n'));
1531
+ } catch {
1532
+ console.log(chalk.green('\n Thanks! Visit https://delimit.ai to stay updated.\n'));
1533
+ }
1534
+ }
1535
+ } catch {}
1536
+
1498
1537
  // Cleanup
1499
1538
  try { fs.rmSync(tmpDir, { recursive: true }); } catch {}
1500
1539
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "delimit-cli",
3
3
  "mcpName": "io.github.delimit-ai/delimit-mcp-server",
4
- "version": "3.14.1",
4
+ "version": "3.14.2",
5
5
  "description": "Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, governance, and multi-model debate.",
6
6
  "main": "index.js",
7
7
  "files": [