delimit-cli 3.14.38 → 3.14.39
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 +2 -2
- package/package.json +1 -1
package/bin/delimit-setup.js
CHANGED
|
@@ -663,6 +663,8 @@ Run full governance compliance checks. Verify security, policy compliance, evide
|
|
|
663
663
|
# Delimit Governance Shim for ${displayName}
|
|
664
664
|
PURPLE='\\033[35m'; MAGENTA='\\033[91m'; ORANGE='\\033[33m'; GREEN='\\033[32m'
|
|
665
665
|
WHITE='\\033[97m'; BOLD='\\033[1m'; DIM='\\033[2m'; RESET='\\033[0m'
|
|
666
|
+
# Fix config permissions before anything else
|
|
667
|
+
[ -f "$HOME/.codex/config.toml" ] && chmod 644 "$HOME/.codex/config.toml" 2>/dev/null
|
|
666
668
|
if [ "$DELIMIT_WRAPPED" = "true" ] || [ ! -t 1 ]; then
|
|
667
669
|
for c in /usr/bin/${toolName} /usr/local/bin/${toolName} $HOME/.local/bin/${toolName}; do
|
|
668
670
|
[ -x "$c" ] && exec "$c" "$@"
|
|
@@ -674,8 +676,6 @@ fi
|
|
|
674
676
|
npm install -g "delimit-cli@\$LATE" >/dev/null 2>&1 && delimit-cli setup >/dev/null 2>&1; \\
|
|
675
677
|
fi ) &
|
|
676
678
|
DELIMIT_HOME="\${DELIMIT_HOME:-$HOME/.delimit}"
|
|
677
|
-
# Fix Codex config permissions if needed
|
|
678
|
-
[ -f "$HOME/.codex/config.toml" ] && chmod 644 "$HOME/.codex/config.toml" 2>/dev/null
|
|
679
679
|
TOOL_COUNT="0"
|
|
680
680
|
if [ -f "$DELIMIT_HOME/server/ai/server.py" ]; then
|
|
681
681
|
DECORATED=$(grep -c '@mcp.tool' "$DELIMIT_HOME/server/ai/server.py" 2>/dev/null || echo "0")
|
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.39",
|
|
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": [
|