update summary to auto#1
Merged
Merged
Conversation
rumple
pushed a commit
to rumple/codex
that referenced
this pull request
Apr 24, 2025
shepting
pushed a commit
to shepting/codex
that referenced
this pull request
Sep 16, 2025
Closed
DioNanos
referenced
this pull request
in DioNanos/codex-termux
Nov 15, 2025
Critical bugfix - auto-update detection now working Fixes: - Version parser now handles -termux suffix correctly - Tag parser accepts both rust-v* and v*-termux formats - Added test coverage for Termux tag validation Technical details: - v0.58.0 upstream merge overwrote -termux suffix support - New upstream code rejected v*-termux tag format - Prevented version.json creation and update notifications Affected versions: v0.58.0 through v0.58.3 Termux patches (4 total): - Patch #1: Browser login fix (termux-open-url) - Patch #2: RAM optimizations (lto=false, codegen-units=16) - Patch #3: Auto-update URL (@mmmbuto/codex-cli-termux) - Patch #4: Auto-update detection (this release)
DioNanos
referenced
this pull request
in DioNanos/codex-termux
Nov 21, 2025
Upstream changes (40+ commits): - New: codex-shell-tool-mcp MCP server - New: execpolicycheck CLI command - New: TUI animations toggle feature - New: Shell timeout increased to 1 hour - Refactor: execpolicy migration (execpolicy2 -> execpolicy) - Removed: tiktoken-rs, shell_command feature - Improved: FreeBSD portability, fuzzy search (8->20 results) Termux patches verified compatible: - #1 Browser login (termux-open-url) ✅ - #2 RAM optimizations (lto=false, codegen-units=16) ✅ - #8 Bash execution (sandbox, LD_*, shell detection) ✅ - #9 Auto-update execution ✅ Stats: 195 files changed, +5915 insertions, -2293 deletions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
DioNanos
referenced
this pull request
in DioNanos/codex-termux
Nov 27, 2025
Merged 61 commits from openai/codex upstream (Nov 21-27, 2025). ✅ ALL TERMUX PATCHES PRESERVED: - Patch #1: Browser login (termux-open-url) - VERIFIED ✅ - Patch #2: RAM optimization (lto=false) - VERIFIED ✅ - Patch #4: Auto-update URL (DioNanos/codex-termux) - VERIFIED ✅ - Patch #5: Version parser (-termux suffix) - VERIFIED ✅ - Patch #6: NPM package name (@mmmbuto/codex-cli-termux) - VERIFIED ✅ - Patch #9: Auto-update execution (npm install) - VERIFIED ✅ NEW UPSTREAM FEATURES: - Enterprise skip upgrade config (check_for_update_on_startup) - Unified exec pruning strategy - Custom env for unified exec process - Compaction events - Thread/turn ID in notifications - Config management app-server - Cargo audit workflow + cargo-deny - NetBSD build fixes - Windows sandbox enhancements - Documentation improvements UPSTREAM CHANGES: - 232 files changed - +11247 insertions, -7808 deletions - New codex-api/ and codex-client/ crates - Rollout session error improvements - Apply patch parsing fixes CONFLICTS RESOLVED: - README.md: Merged Testing section (Termux) + Documentation links (upstream) NEXT: Compilation + Category 13 test suite validation
DioNanos
referenced
this pull request
in DioNanos/codex-termux
Jan 8, 2026
…8+ requirement - Upstream: OpenAI Codex rust-v0.79.0 - Termux patches validated: #1-#6, #8, #9 - Testing: 47/49 passed (2 skipped: WebSearch, Git) - Documentation: - Added GLM-4.7 quickstart guide (docs/GLM4.7-quickstart.md) - Updated README with GLM-4.7 Path 2 in Quickstart - Node.js requirement updated to >=18 (recommended >=22) - Web search safety warning added - Tagline updated to "Built from upstream" - Package: npm-package synced with main README - Binaries: codex (59M), codex-exec (34M), codex-tui (41M) verified
charley-oai
added a commit
that referenced
this pull request
Jan 9, 2026
…put image above user message
charley-oai
added a commit
that referenced
this pull request
Jan 10, 2026
Agent wouldn't "see" attached images and would instead try to use the view_file tool: <img width="1516" height="504" alt="image" src="https://github.com/user-attachments/assets/68a705bb-f962-4fc1-9087-e932a6859b12" /> In this PR, we wrap image content items in XML tags with the name of each image (now just a numbered name like `[Image #1]`), so that the model can understand inline image references (based on name). We also put the image content items above the user message which the model seems to prefer (maybe it's more used to definitions being before references). We also tweak the view_file tool description which seemed to help a bit Results on a simple eval set of images: Before <img width="980" height="310" alt="image" src="https://github.com/user-attachments/assets/ba838651-2565-4684-a12e-81a36641bf86" /> After <img width="918" height="322" alt="image" src="https://github.com/user-attachments/assets/10a81951-7ee6-415e-a27e-e7a3fd0aee6f" /> ```json [ { "id": "single_describe", "prompt": "Describe the attached image in one sentence.", "images": ["image_a.png"] }, { "id": "single_color", "prompt": "What is the dominant color in the image? Answer with a single color word.", "images": ["image_b.png"] }, { "id": "orientation_check", "prompt": "Is the image portrait or landscape? Answer in one sentence.", "images": ["image_c.png"] }, { "id": "detail_request", "prompt": "Look closely at the image and call out any small details you notice.", "images": ["image_d.png"] }, { "id": "two_images_compare", "prompt": "I attached two images. Are they the same or different? Briefly explain.", "images": ["image_a.png", "image_b.png"] }, { "id": "two_images_captions", "prompt": "Provide a short caption for each image (Image 1, Image 2).", "images": ["image_c.png", "image_d.png"] }, { "id": "multi_image_rank", "prompt": "Rank the attached images from most colorful to least colorful.", "images": ["image_a.png", "image_b.png", "image_c.png"] }, { "id": "multi_image_choice", "prompt": "Which image looks more vibrant? Answer with 'Image 1' or 'Image 2'.", "images": ["image_b.png", "image_d.png"] } ] ```
DioNanos
referenced
this pull request
in DioNanos/codex-termux
Jan 10, 2026
- Updated workspace version to 0.80.0-termux - All Termux patches verified functional (#1-#6, #9 active) - Patch #8 no longer required (resolved upstream by PR openai#8951) - Process hardening removed from Codex CLI improves bash execution - Test suite: 49/49 passed (CODEX_TEST_REPORT_v0.80.0.md) - Upstream changes: * Thread fork endpoints (conversation branching) * Requirements/list API * Elevated sandbox onboarding NUX * Skills explicit invocation via V2 API * Metrics capabilities (otel/metrics module) * Removed process hardening from Codex CLI - Binaries compiled: codex (60M), codex-tui (42M), codex-exec (35M), codex-app-server (38M) - Updated patches/README.md for v0.80.0
DioNanos
referenced
this pull request
in DioNanos/codex-termux
Jan 10, 2026
- Remove old test report (CODEX_TEST_REPORT_v0.79.0.md) - Update version references from 0.79.0 to 0.80.0 - Update upstream reference from rust-v0.79.0 to rust-v0.80.0 - Update test date from 2026-01-08 to 2026-01-10 - Update test results to 49/49 passed (0 skipped) - Update patch description: 8 patches (#1-#6, openai#9) - Patch #8 resolved upstream - Sync npm-package/README.md with root README.md
charley-oai
added a commit
that referenced
this pull request
Jan 12, 2026
…put image above user message
victalejo
added a commit
to victalejo/codrex
that referenced
this pull request
Apr 28, 2026
Generalizes the consecutive-system coalesce shipped in c1579ac. While investigating TODO openai#8 (rollout persistence), discovered MiniMax actually enforces TWO related constraints: 1. No two adjacent system messages -> "invalid chat setting (2013)" 2. No system message after position 0 -> "chat content has invalid message role: system (2013)" Both surface from api.minimax.io/v1/chat/completions with the same opaque error code 2013. Constraint openai#1 was hit on first turns; openai#2 was hit only on resumed sessions where Codex emits a turn_context refresh as a mid-conversation system message. The probe matrix in wire_probe.rs confirms both behaviors live (probes 05a/05c/05d). Refactor: - coalesce_consecutive_system_messages -> consolidate_system_messages_to_leading - New behavior: collect every system body anywhere in the array, drop empty ones, emit ONE leading system message joined by blank lines, preserve insertion order of system bodies, preserve all non-system messages in their original relative order. - Content-preserving: the model sees every instruction body it would have seen, just hoisted to position 0. Tests: - New: translate_hoists_non_leading_system_to_position_zero (regression for the resumed-session shape). - New: translate_drops_empty_system_messages_during_consolidation. - Replaces translate_does_not_merge_non_adjacent_system_messages (whose old behavior is now incorrect). - 17 minimax_adapter tests passing. Validated: $ codrex exec resume <minimax-session-id> -m minimax/MiniMax-M2.7 "respond just OK" ... codex OK While investigating: confirmed `failed to record rollout items: thread X not found` is a PRE-EXISTING upstream bug (reproduces verbatim in `codex-cli 0.125.0`). The error is cosmetic — the rollout file is written to disk BEFORE the shutdown race that triggers the log line. Resume works correctly despite it. TODO openai#8 downgraded to cosmetic; the real blocker for MiniMax resume was this hoist fix, not the rollout race.
dlight
added a commit
to dlight/codex
that referenced
this pull request
May 4, 2026
Yuou need this in Codex config ```toml [sandbox_workspace_write] network_access = true # Blunt tool for connecting to Wayland of Xorg writable_roots = ["/dev/dri"] # GPU access ``` This commit just makes bubblewrap treat /dev/dri differently, mounting it with --dev-bin instead of --bin. It's a hardcoded hack. If this works, the next step is to make a config `writable_dev_roots` for things like /dev/dri.
|
User asked about "Codex". Clarify what aspect they are interested in: definition, how to use it, API access, or GitHub integration. |
|
User wants to install Codex + HyperFrames into ChatGPT on Android. Please provide official setup/support status and whether HyperFrames integration exists publicly. |
|
User asked how to use Codex. Providing general onboarding guidance. |
|
codex++ |
|
I want to add my GitHub to Codex. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.