@prover-coder-ai/docker-git 1.0.29 → 1.0.30

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.
@@ -2618,8 +2618,11 @@ else
2618
2618
  mkdir -p "$(dirname "$CODEX_CONFIG_FILE")" || true
2619
2619
  cat <<'EOF' > "$CODEX_CONFIG_FILE"
2620
2620
  # docker-git codex config
2621
- model = "gpt-5.3-codex"
2621
+ model = "gpt-5.4"
2622
+ model_context_window = 1050000
2623
+ model_auto_compact_token_limit = 945000
2622
2624
  model_reasoning_effort = "xhigh"
2625
+ plan_mode_reasoning_effort = "xhigh"
2623
2626
  personality = "pragmatic"
2624
2627
 
2625
2628
  approval_policy = "never"
@@ -2749,10 +2752,7 @@ if [[ -s /etc/zsh/zshrc ]] && ! grep -q "zz-codex-resume.sh" /etc/zsh/zshrc 2>/d
2749
2752
  fi`;
2750
2753
  const escapeForDoubleQuotes = (value) => {
2751
2754
  const backslash = String.fromCodePoint(92);
2752
- const quote = String.fromCodePoint(34);
2753
- const escapedBackslash = `${backslash}${backslash}`;
2754
- const escapedQuote = `${backslash}${quote}`;
2755
- return value.replaceAll(backslash, escapedBackslash).replaceAll(quote, escapedQuote);
2755
+ return value.replaceAll(backslash, `${backslash}${backslash}`).replaceAll(String.fromCodePoint(34), `${backslash}${String.fromCodePoint(34)}`);
2756
2756
  };
2757
2757
  const renderEntrypointCodexResumeHint = (config) => entrypointCodexResumeHintTemplate.replaceAll("__REPO_REF_DEFAULT__", escapeForDoubleQuotes(config.repoRef)).replaceAll("__REPO_URL_DEFAULT__", escapeForDoubleQuotes(config.repoUrl));
2758
2758
  const entrypointAgentsNoticeTemplate = String.raw`# Ensure global AGENTS.md exists for container context
@@ -4616,8 +4616,11 @@ const defaultEnvContents = "# docker-git env\n# KEY=value\n";
4616
4616
  const codexConfigMarker = "# docker-git codex config";
4617
4617
  const defaultCodexConfig = [
4618
4618
  "# docker-git codex config",
4619
- 'model = "gpt-5.3-codex"',
4619
+ 'model = "gpt-5.4"',
4620
+ "model_context_window = 1050000",
4621
+ "model_auto_compact_token_limit = 945000",
4620
4622
  'model_reasoning_effort = "xhigh"',
4623
+ 'plan_mode_reasoning_effort = "xhigh"',
4621
4624
  'personality = "pragmatic"',
4622
4625
  "",
4623
4626
  'approval_policy = "never"',