@mmmbuto/codex-cli-termux 0.61.1-termux → 0.62.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 +34 -5
- package/bin/codex +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ npm install -g @mmmbuto/codex-cli-termux
|
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
80
|
codex --version
|
|
81
|
-
# Output: codex-tui 0.
|
|
81
|
+
# Output: codex-tui 0.62.0
|
|
82
82
|
|
|
83
83
|
codex login
|
|
84
84
|
# Opens browser for authentication
|
|
@@ -131,13 +131,13 @@ prefix_rule(
|
|
|
131
131
|
|
|
132
132
|
In this example rule, if Codex wants to run commands with the prefix `git push` or `git fetch`, it will first ask for user approval.
|
|
133
133
|
|
|
134
|
-
Use [`
|
|
134
|
+
Use [`execpolicy` CLI](./codex-rs/execpolicy/README.md) to preview decisions for policy files:
|
|
135
135
|
|
|
136
136
|
```shell
|
|
137
|
-
cargo run -p codex-
|
|
137
|
+
cargo run -p codex-execpolicy -- check --policy ~/.codex/policy/default.codexpolicy git push origin main
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
Pass multiple `--policy` flags to test how several files combine. See the [`codex-rs/
|
|
140
|
+
Pass multiple `--policy` flags to test how several files combine. See the [`codex-rs/execpolicy` README](./codex-rs/execpolicy/README.md) for a more detailed walkthrough of the available syntax.
|
|
141
141
|
|
|
142
142
|
---
|
|
143
143
|
|
|
@@ -263,7 +263,7 @@ See [LICENSE](./LICENSE) file for details.
|
|
|
263
263
|
|
|
264
264
|
---
|
|
265
265
|
|
|
266
|
-
**Version**: Based on OpenAI Codex 0.
|
|
266
|
+
**Version**: Based on OpenAI Codex 0.62.0 (includes GPT-5.1 MAX support)
|
|
267
267
|
**Platform**: Android Termux ARM64
|
|
268
268
|
**Maintained**: Community-driven, not affiliated with OpenAI
|
|
269
269
|
|
|
@@ -271,6 +271,35 @@ See [LICENSE](./LICENSE) file for details.
|
|
|
271
271
|
|
|
272
272
|
## 📜 Changelog
|
|
273
273
|
|
|
274
|
+
### v0.62.0-termux (2025-11-21)
|
|
275
|
+
|
|
276
|
+
**Update**: Synced with upstream OpenAI Codex rust-v0.62.0 (40+ commits from v0.61.0)
|
|
277
|
+
|
|
278
|
+
**Upstream Features**:
|
|
279
|
+
- 🆕 **codex-shell-tool-mcp**: New MCP server for shell tools
|
|
280
|
+
- 🆕 **execpolicycheck**: New CLI command for exec policy debugging
|
|
281
|
+
- 🎯 **TUI reasoning default**: Changed to "medium" level
|
|
282
|
+
- ⏱️ **Shell timeout**: Increased to 1 hour for long-running commands
|
|
283
|
+
- 🎬 **TUI animations toggle**: Feature switch to disable animations
|
|
284
|
+
- 🔄 **resume --last**: Allow reading prompt from last session
|
|
285
|
+
|
|
286
|
+
**Breaking Changes**:
|
|
287
|
+
- `execpolicy` migration: `execpolicy2` → `execpolicy`, old → `execpolicy-legacy`
|
|
288
|
+
- Removed `tiktoken-rs` dependency
|
|
289
|
+
- `ExecParams.timeout_ms` replaced with `ExecExpiration` enum
|
|
290
|
+
|
|
291
|
+
**Termux-Specific**:
|
|
292
|
+
- ✅ **All 9 patches preserved and verified** (no conflicts)
|
|
293
|
+
- ✅ **Build optimized for 8GB RAM**: Compiled in 10m 35s on ROG Phone 3
|
|
294
|
+
- ✅ **Binary size**: 35MB
|
|
295
|
+
- ✅ **Test Suite**: 39/42 passed (92.9%), 9/10 Termux-specific
|
|
296
|
+
|
|
297
|
+
**Stats**: 195 files changed, +5915 insertions, -2293 deletions
|
|
298
|
+
|
|
299
|
+
Full upstream changelog: https://github.com/openai/codex/compare/rust-v0.61.0...rust-v0.62.0
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
274
303
|
### v0.61.0-termux (2025-11-20)
|
|
275
304
|
|
|
276
305
|
**Update**: Synced with upstream OpenAI Codex rust-v0.61.0 (13 commits from v0.60.1)
|
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.62.0-termux",
|
|
4
|
+
"description": "OpenAI Codex CLI v0.62.0 with GPT-5.1 MAX support, pre-compiled for Android Termux (ARM64)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin/codex.js",
|
|
7
7
|
"bin": {
|