delimit-cli 3.14.18 → 3.14.20
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 +1 -0
- package/bin/delimit-setup.js +3 -2
- package/lib/cross-model-hooks.js +1 -1
- package/package.json +1 -1
package/bin/delimit-cli.js
CHANGED
|
@@ -2156,6 +2156,7 @@ program
|
|
|
2156
2156
|
.command('setup')
|
|
2157
2157
|
.description('Install Delimit MCP governance tools into all AI assistants')
|
|
2158
2158
|
.option('--dry-run', 'Preview config changes without writing anything')
|
|
2159
|
+
.option('--yes', 'Skip all prompts and accept defaults')
|
|
2159
2160
|
.action((options) => {
|
|
2160
2161
|
if (options.dryRun) {
|
|
2161
2162
|
const os = require('os');
|
package/bin/delimit-setup.js
CHANGED
|
@@ -80,7 +80,8 @@ async function main() {
|
|
|
80
80
|
log(magenta(' / / / / __/ / / / // /|_/ // / / / '));
|
|
81
81
|
log(magenta(' / /_/ / /___/ /____/ // / / // / / / '));
|
|
82
82
|
log(orange('/_____/_____/_____/___/_/ /_/___/ /_/ '));
|
|
83
|
-
|
|
83
|
+
const _pkg = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'package.json'), 'utf-8'));
|
|
84
|
+
log(dim(` v${_pkg.version}`));
|
|
84
85
|
log('');
|
|
85
86
|
|
|
86
87
|
// Step 1: Check prerequisites
|
|
@@ -618,7 +619,7 @@ printf " \${PURPLE}\${BOLD} / __ \\\\/ ____/ / / _/ |/ / _/_ __/\${RES
|
|
|
618
619
|
printf " \${MAGENTA}\${BOLD} / / / / __/ / / / // /|_/ // / / / \${RESET}\\n"
|
|
619
620
|
printf " \${MAGENTA}\${BOLD} / /_/ / /___/ /____/ // / / // / / / \${RESET}\\n"
|
|
620
621
|
printf " \${ORANGE}\${BOLD}/_____/_____/_____/___/_/ /_/___/ /_/ \${RESET}\\n"
|
|
621
|
-
printf " \${DIM}
|
|
622
|
+
printf " \${DIM}v${pkg.version}\${RESET}\\n"
|
|
622
623
|
echo ""
|
|
623
624
|
printf " \${PURPLE}\${BOLD}[Delimit]\${RESET} \${DIM}Executing governance check...\${RESET}\\n"
|
|
624
625
|
sleep 0.1
|
package/lib/cross-model-hooks.js
CHANGED
|
@@ -706,7 +706,7 @@ async function hookSessionStart() {
|
|
|
706
706
|
lines.push(`[Delimit] Updating ${currentVersion} -> ${latest}...`);
|
|
707
707
|
try {
|
|
708
708
|
execS('npm install -g delimit-cli@latest 2>/dev/null', { timeout: 30000, stdio: 'pipe' });
|
|
709
|
-
execS('delimit-cli setup
|
|
709
|
+
execS('delimit-cli setup 2>/dev/null', { timeout: 30000, stdio: 'pipe' });
|
|
710
710
|
lines.push(`[Delimit] Updated to ${latest}`);
|
|
711
711
|
} catch {
|
|
712
712
|
lines.push(`[Delimit] Auto-update failed. Run: npm install -g delimit-cli@latest`);
|
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.20",
|
|
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": [
|