@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.
- package/README.md +39 -16
- package/bin/codex +0 -0
- 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.
|
|
3
|
+
OpenAI Codex CLI v0.57.0 pre-compiled for Android Termux (ARM64)
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ๐ v0.57.0 - Latest Release
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**Synced with upstream OpenAI Codex rust-v0.57.0 (25 commits)**
|
|
8
8
|
|
|
9
|
-
###
|
|
10
|
-
-
|
|
11
|
-
-
|
|
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
|
-
###
|
|
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
|
|
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 --
|
|
33
|
-
codex
|
|
34
|
-
codex
|
|
35
|
-
codex
|
|
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.
|
|
4
|
-
"description": "OpenAI Codex CLI v0.
|
|
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"
|