delimit-cli 3.14.35 → 3.14.37

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.
@@ -312,6 +312,8 @@ async function main() {
312
312
  }
313
313
  if (fs.existsSync(CODEX_CONFIG)) {
314
314
  try {
315
+ // Fix permissions on existing config
316
+ fs.chmodSync(CODEX_CONFIG, 0o644);
315
317
  let toml = fs.readFileSync(CODEX_CONFIG, 'utf-8');
316
318
  if (toml.includes('[mcp_servers.delimit]')) {
317
319
  await logp(` ${green('✓')} Delimit already in Codex config`);
@@ -662,6 +664,8 @@ fi
662
664
  npm install -g "delimit-cli@\$LATE" >/dev/null 2>&1 && delimit-cli setup >/dev/null 2>&1; \\
663
665
  fi ) &
664
666
  DELIMIT_HOME="\${DELIMIT_HOME:-$HOME/.delimit}"
667
+ # Fix Codex config permissions if needed
668
+ [ -f "$HOME/.codex/config.toml" ] && chmod 644 "$HOME/.codex/config.toml" 2>/dev/null
665
669
  TOOL_COUNT="0"
666
670
  if [ -f "$DELIMIT_HOME/server/ai/server.py" ]; then
667
671
  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.35",
4
+ "version": "3.14.37",
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": [