@mmmbuto/codex-cli-termux 0.55.7-termux โ†’ 0.57.0-termux

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.
Files changed (3) hide show
  1. package/README.md +39 -16
  2. package/bin/codex +0 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,22 +1,25 @@
1
1
  # @mmmbuto/codex-cli-termux
2
2
 
3
- OpenAI Codex CLI v0.55.7 pre-compiled for Android Termux (ARM64)
3
+ OpenAI Codex CLI v0.57.0 pre-compiled for Android Termux (ARM64)
4
4
 
5
- ## ๐Ÿ”ง v0.55.7 - Stable Release (Patch #8)
5
+ ## ๐Ÿš€ v0.57.0 - Latest Release
6
6
 
7
- **Critical fix for Termux/Android**: Codex Agent can now execute bash commands correctly
7
+ **Synced with upstream OpenAI Codex rust-v0.57.0 (25 commits)**
8
8
 
9
- ### What was broken
10
- - Bash commands in Agent mode failed with "Permission denied"
11
- - Affected all Termux installations (issue existed since upstream)
9
+ ### Upstream improvements
10
+ - โŒจ๏ธ **TUI Navigation**: CTRL-n / CTRL-p for navigating slash commands, files, history
11
+ - ๐Ÿ”ง **Unified Exec**: Improved safe commands handling, process group timeout fixes
12
+ - ๐ŸชŸ **WSL Support**: Path normalization for Windows Subsystem for Linux
13
+ - ๐Ÿš€ **App-server v2**: New Thread/Turn APIs, account endpoints
14
+ - ๐Ÿงน **Refactoring**: Terminal cleanup (deprecated flush logic removed)
12
15
 
13
- ### What's fixed
16
+ ### Termux-specific patches (maintained)
17
+ - โœ… Android auto-update disabled (manual update instructions shown)
18
+ - โœ… `termux-open-url` for browser login (avoids ndk-context crash)
19
+ - โœ… RAM optimizations for 16GB devices (lto=false, codegen-units=16)
14
20
  - โœ… Disabled unsupported sandbox on Android (landlock/seccomp)
15
21
  - โœ… Preserved LD_* environment variables required by Termux
16
- - โœ… Fixed shell detection to use $SHELL instead of getpwuid()
17
-
18
- ### Impact
19
- Agent mode now works fully on Termux - can execute pkg, git, npm, and all bash commands.
22
+ - โœ… Fixed shell detection ($SHELL instead of getpwuid)
20
23
 
21
24
  ---
22
25
 
@@ -29,10 +32,19 @@ npm install -g @mmmbuto/codex-cli-termux
29
32
  ## Usage
30
33
 
31
34
  ```bash
32
- codex --help
33
- codex --version
34
- codex login # Authenticate with OpenAI
35
- codex # Start interactive Agent mode
35
+ codex --version # Show version (0.57.0)
36
+ codex login # Authenticate with OpenAI
37
+ codex # Start interactive TUI
38
+ codex exec "prompt" # Non-interactive mode
39
+ codex --help # Full documentation
40
+ ```
41
+
42
+ ### New in 0.57.0
43
+
44
+ ```bash
45
+ # Try new TUI navigation
46
+ codex
47
+ # Press CTRL-n / CTRL-p to navigate slash commands, files, history
36
48
  ```
37
49
 
38
50
  ## Requirements
@@ -40,18 +52,29 @@ codex # Start interactive Agent mode
40
52
  - **Platform**: Android with Termux
41
53
  - **Architecture**: ARM64
42
54
  - **Node.js**: โ‰ฅ 14.0.0
55
+ - **Storage**: ~50MB
43
56
 
44
57
  ## Source
45
58
 
46
59
  This package contains a pre-compiled binary of [OpenAI Codex](https://github.com/openai/codex) for ARM64 Termux.
47
60
 
48
- - **Upstream**: [github.com/openai/codex](https://github.com/openai/codex)
61
+ - **Upstream**: [github.com/openai/codex](https://github.com/openai/codex) (rust-v0.57.0)
49
62
  - **Fork**: [github.com/DioNanos/codex-termux](https://github.com/DioNanos/codex-termux)
63
+ - **Changelog**: https://github.com/openai/codex/compare/rust-v0.56.0...rust-v0.57.0
64
+
65
+ ## Compatibility
66
+
67
+ Fully compatible with official OpenAI Codex. Only minimal patches for Android/Termux compatibility. No behavior modifications.
50
68
 
51
69
  ## License
52
70
 
53
71
  Apache 2.0 - See [LICENSE](https://github.com/DioNanos/codex-termux/blob/main/LICENSE)
54
72
 
73
+ **Original work**: Copyright OpenAI
74
+ **Termux port**: Minimal patches for Android compatibility
75
+
55
76
  ## Maintainer
56
77
 
57
78
  Davide A. Guglielmi <dev@mmmbuto.com>
79
+
80
+ **Last updated**: 2025-11-10
package/bin/codex CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mmmbuto/codex-cli-termux",
3
- "version": "0.55.7-termux",
4
- "description": "OpenAI Codex CLI v0.55.7 - Stable release with Patch #8 (Android ARM64)",
3
+ "version": "0.57.0-termux",
4
+ "description": "OpenAI Codex CLI v0.57.0 - Termux build (Android ARM64)",
5
5
  "main": "bin/codex",
6
6
  "bin": {
7
7
  "codex": "./bin/codex"