delimit-cli 3.14.4 → 3.14.5
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 +2 -2
- package/bin/delimit-setup.js +2 -2
- package/package.json +1 -1
package/bin/delimit-cli.js
CHANGED
|
@@ -1119,7 +1119,7 @@ program
|
|
|
1119
1119
|
const ans = await inquirer.prompt([{
|
|
1120
1120
|
type: 'confirm',
|
|
1121
1121
|
name: 'addWorkflow',
|
|
1122
|
-
message: 'Add GitHub Action for PR governance?',
|
|
1122
|
+
message: 'Add GitHub Action for PR governance? (Enter = Yes)',
|
|
1123
1123
|
default: true,
|
|
1124
1124
|
}]);
|
|
1125
1125
|
writeWorkflow = ans.addWorkflow;
|
|
@@ -1175,7 +1175,7 @@ jobs:
|
|
|
1175
1175
|
const driftAns = await inquirer.prompt([{
|
|
1176
1176
|
type: 'confirm',
|
|
1177
1177
|
name: 'addDrift',
|
|
1178
|
-
message: 'Add weekly drift monitoring workflow?',
|
|
1178
|
+
message: 'Add weekly drift monitoring workflow? (Enter = Yes)',
|
|
1179
1179
|
default: true,
|
|
1180
1180
|
}]);
|
|
1181
1181
|
writeDrift = driftAns.addDrift;
|
package/bin/delimit-setup.js
CHANGED
|
@@ -513,7 +513,7 @@ Run full governance compliance checks. Verify security, policy compliance, evide
|
|
|
513
513
|
const answer = await inquirer.prompt([{
|
|
514
514
|
type: 'confirm',
|
|
515
515
|
name: 'enable',
|
|
516
|
-
message: 'Enable governance wrapping?',
|
|
516
|
+
message: 'Enable governance wrapping? (press Enter for Yes)',
|
|
517
517
|
default: true,
|
|
518
518
|
}]);
|
|
519
519
|
enableShims = answer.enable;
|
|
@@ -621,7 +621,7 @@ exit 127
|
|
|
621
621
|
const answer = await inq.prompt([{
|
|
622
622
|
type: 'confirm',
|
|
623
623
|
name: 'install',
|
|
624
|
-
message: `Install governance hooks for ${detected.map(t => t.name).join(', ')}
|
|
624
|
+
message: `Install governance hooks for ${detected.map(t => t.name).join(', ')}? (press Enter for Yes)`,
|
|
625
625
|
default: true,
|
|
626
626
|
}]);
|
|
627
627
|
installHooks = answer.install;
|
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.
|
|
4
|
+
"version": "3.14.5",
|
|
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": [
|