delimit-cli 3.14.30 → 3.14.32

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.
@@ -209,6 +209,11 @@ async function main() {
209
209
  log(` ${dim(' Pro modules not available for ${artifact} — free tools work fine')}`);
210
210
  }
211
211
 
212
+ // Re-copy gateway source AFTER Pro modules to ensure full files aren't overwritten by stubs
213
+ if (fs.existsSync(gatewaySource)) {
214
+ copyDir(gatewaySource, path.join(DELIMIT_HOME, 'server'));
215
+ }
216
+
212
217
  // Install Python deps into isolated venv with pinned versions
213
218
  log(` ${dim(' Installing Python dependencies...')}`);
214
219
  const venvDir = path.join(DELIMIT_HOME, 'venv');
@@ -620,6 +625,11 @@ if [ "$DELIMIT_WRAPPED" = "true" ] || [ ! -t 1 ]; then
620
625
  [ -x "$c" ] && exec "$c" "$@"
621
626
  done
622
627
  fi
628
+ # Auto-update in background (non-blocking)
629
+ ( CURR=\$(delimit-cli --version 2>/dev/null); LATE=\$(npm view delimit-cli version 2>/dev/null); \\
630
+ if [ -n "\$LATE" ] && [ "\$LATE" != "\$CURR" ]; then \\
631
+ npm install -g "delimit-cli@\$LATE" >/dev/null 2>&1 && delimit-cli setup >/dev/null 2>&1; \\
632
+ fi ) &
623
633
  DELIMIT_HOME="\${DELIMIT_HOME:-$HOME/.delimit}"
624
634
  TOOL_COUNT="0"
625
635
  if [ -f "$DELIMIT_HOME/server/ai/server.py" ]; then
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.30",
4
+ "version": "3.14.32",
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": [