delimit-cli 4.1.5 → 4.1.6
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/bin/delimit-cli.js +7 -4
- package/package.json +1 -1
package/bin/delimit-cli.js
CHANGED
|
@@ -2396,7 +2396,7 @@ program
|
|
|
2396
2396
|
const { next } = await inquirer.prompt([{
|
|
2397
2397
|
type: 'list',
|
|
2398
2398
|
name: 'next',
|
|
2399
|
-
message: 'What next
|
|
2399
|
+
message: '\n What next?\n',
|
|
2400
2400
|
choices: [
|
|
2401
2401
|
{ name: `Lint this spec for breaking changes`, value: 'lint' },
|
|
2402
2402
|
{ name: 'Set up governance for this project', value: 'init' },
|
|
@@ -2467,7 +2467,8 @@ program
|
|
|
2467
2467
|
}
|
|
2468
2468
|
} catch {}
|
|
2469
2469
|
} else {
|
|
2470
|
-
console.log(` ${chalk.yellow('\u2014')} No OpenAPI specs found in this directory
|
|
2470
|
+
console.log(` ${chalk.yellow('\u2014')} No OpenAPI specs found in this directory`);
|
|
2471
|
+
console.log('');
|
|
2471
2472
|
// Run demo on bundled example spec so users always see value
|
|
2472
2473
|
const demoSpec = path.join(__dirname, '..', 'examples', 'petstore-v1.yaml');
|
|
2473
2474
|
if (fs.existsSync(demoSpec)) {
|
|
@@ -2487,7 +2488,9 @@ program
|
|
|
2487
2488
|
const color = score >= 70 ? 'green' : score >= 40 ? 'yellow' : 'red';
|
|
2488
2489
|
console.log(` ${chalk.gray(dim.padEnd(16))} ${chalk[color](bar)} ${score}`);
|
|
2489
2490
|
}
|
|
2490
|
-
console.log(
|
|
2491
|
+
console.log('');
|
|
2492
|
+
console.log(chalk.gray(' This is a demo. Point at your spec: npx delimit-cli scan openapi.yaml'));
|
|
2493
|
+
console.log('');
|
|
2491
2494
|
} catch {}
|
|
2492
2495
|
} else {
|
|
2493
2496
|
console.log(chalk.gray(' Tip: point at a spec file: npx delimit-cli scan openapi.yaml'));
|
|
@@ -2498,7 +2501,7 @@ program
|
|
|
2498
2501
|
const { next } = await inquirer.prompt([{
|
|
2499
2502
|
type: 'list',
|
|
2500
2503
|
name: 'next',
|
|
2501
|
-
message: 'What next
|
|
2504
|
+
message: '\n What next?\n',
|
|
2502
2505
|
choices: [
|
|
2503
2506
|
{ name: 'Set up governance for this project', value: 'init' },
|
|
2504
2507
|
{ name: 'Configure AI assistants (Claude, Codex, Gemini)', value: 'setup' },
|
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": "4.1.
|
|
4
|
+
"version": "4.1.6",
|
|
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": [
|