delimit-cli 3.14.19 → 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-setup.js +3 -2
- package/package.json +1 -1
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/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": [
|