@mmmbuto/codex-cli-termux 0.76.0-termux → 0.77.1-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 +29 -21
  2. package/bin/codex +0 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -75,7 +75,7 @@ npm install -g @mmmbuto/codex-cli-termux
75
75
 
76
76
  ```bash
77
77
  codex --version
78
- # Output: codex-cli 0.76.0-termux
78
+ # Output: codex-cli 0.77.1-termux
79
79
 
80
80
  codex login
81
81
  # Opens browser for authentication
@@ -104,7 +104,7 @@ codex
104
104
  codex --help
105
105
  ```
106
106
 
107
- For full documentation, see [OpenAI Codex docs](https://github.com/openai/codex).
107
+ For full documentation, see [OpenAI Codex docs](https://developers.openai.com/codex).
108
108
 
109
109
  ### Non-Interactive Mode (Automation)
110
110
 
@@ -196,28 +196,28 @@ Codex will automatically:
196
196
  - ✅ Browser opener availability (Patch #1 validation)
197
197
  - ✅ Architecture detection (aarch64/ARM64)
198
198
 
199
- **Suite size**: 82 tests defined (includes optional/manual). Automated run on Termux executes 50 applicable tests; last run (2025-12-18) completed with 48 ✅ / 0 ❌ / 2 ⚠️ skipped (WebSearch tool absent, git info in non-repo workspace).
199
+ **Suite size**: 82 tests defined (includes optional/manual). Automated run on Termux executes 49 applicable tests; last run (2026-01-04) completed with 47 ✅ / 0 ❌ / 2 ⚠️ skipped (WebSearch tool absent, git info in non-repo workspace).
200
200
 
201
201
  **Success Criteria**:
202
202
  - All System, Files, Shell, and Termux tests must pass
203
203
  - At least 80% overall pass rate
204
204
  - No critical crashes
205
205
 
206
- **Example Report** (v0.76.0-termux, 2025-12-20):
206
+ **Example Report** (v0.77.1-termux, 2026-01-04):
207
207
  ```
208
208
  CODEX CLI TEST SUITE - FINAL REPORT
209
209
  ====================================
210
210
  Platform: Android Termux ARM64 (reference device)
211
- Codex Version: 0.76.0-termux
212
- Total Tests: 50
213
- ✅ Passed: 48
211
+ Codex Version: 0.77.1-termux
212
+ Total Tests: 49
213
+ ✅ Passed: 47
214
214
  ❌ Failed: 0
215
215
  ⚠️ Skipped: 2 (WebSearch disabled, git info skipped in non-repo workspace)
216
216
 
217
217
  Termux-Specific: 10/10 passed ✅
218
218
  Package & Binary: 8/8 passed ✅
219
219
 
220
- VERDICT: ⚠️ PASS WITH WARNINGS
220
+ VERDICT: PASS
221
221
  ```
222
222
  - [**Getting started**](./docs/getting-started.md)
223
223
  - [CLI usage](./docs/getting-started.md#cli-usage)
@@ -237,16 +237,12 @@ VERDICT: ⚠️ PASS WITH WARNINGS
237
237
  - [GitHub Action](https://github.com/openai/codex-action)
238
238
  - [TypeScript SDK](./sdk/typescript/README.md)
239
239
  - [Non-interactive mode (`codex exec`)](./docs/exec.md)
240
- - [**Advanced**](./docs/advanced.md)
241
- - [Tracing / verbose logging](./docs/advanced.md#tracing--verbose-logging)
242
- - [Model Context Protocol (MCP)](./docs/advanced.md#model-context-protocol-mcp)
243
- - [**Zero data retention (ZDR)**](./docs/zdr.md)
244
- - [**Contributing**](./docs/contributing.md)
245
- - [**Install & build**](./docs/install.md)
240
+ - [**Skills**](./docs/skills.md)
241
+ - [**Installing & building**](./docs/install.md)
246
242
  - [System Requirements](./docs/install.md#system-requirements)
247
243
  - [DotSlash](./docs/install.md#dotslash)
248
244
  - [Build from source](./docs/install.md#build-from-source)
249
- - [**FAQ**](./docs/faq.md)
245
+ - [**Contributing**](./docs/contributing.md)
250
246
  - [**Open source fund**](./docs/open-source-fund.md)
251
247
 
252
248
  ---
@@ -293,7 +289,7 @@ See [LICENSE](./LICENSE) file for details.
293
289
 
294
290
  ---
295
291
 
296
- **Version**: Based on OpenAI Codex 0.75.0 (Termux build refresh, package/bin verification updated)
292
+ **Version**: Based on OpenAI Codex main (post rust-v0.77.0) with Termux compatibility patches
297
293
  **Platform**: Android Termux ARM64
298
294
  **Maintained**: Community-driven, not affiliated with OpenAI
299
295
 
@@ -301,14 +297,26 @@ See [LICENSE](./LICENSE) file for details.
301
297
 
302
298
  ## 📜 Changelog
303
299
 
304
- ### v0.76.0-termux (2025-12-20) – latest
300
+ ### v0.77.1-termux (2026-01-04) – latest
305
301
  **Dist-tag**: `latest`
306
302
 
307
- - ⬆️ Upstream bump to OpenAI Codex rust-v0.75.0.
308
- - 🧭 Single entrypoint confirmed: `codex` with no args opens TUI; `codex <prompt>` routes to exec; `codex-exec` kept as JS wrapper/symlink.
303
+ - ⬆️ Upstream merge: 63 commits after rust-v0.77.0. Highlights:
304
+ - Config sources: in-repo `.codex/config.toml` (8ff16a7), `/etc/codex/config.toml` (e27d9bd), `project_root_markers` (314937f).
305
+ - ExecPolicyManager wiring: add (96fdbdd), load from ConfigLayerStack (277babb).
306
+ - TUI2 selection/copy/perf: multi-click selection (0130a2f), copy shortcut (414fbe0), cache transcript (90f37e8), reduce redraws (3cfa4bc), scroll stickiness fix (279283f).
307
+ - Unified exec output cap (fb24c47), SandboxUsers group for ACLs (79ce79a).
308
+ - Remove reasoning format (40de81e), remove model family from TUI (2de7314).
309
+ - 🔧 Termux patches #1–6, #8, #9 revalidated after merge (`verify-patches.sh`).
310
+ - ✅ Tests: CODEX_TEST_SUITE v1.2 on Termux (2026-01-04) → 47 passed / 0 failed / 2 skipped; Package & Binary 8/8 passed; Termux-Specific 10/10 passed.
311
+
312
+ ### v0.77.0-termux (2025-12-21)
313
+ **Dist-tag**: `previous`
314
+
315
+ - ⬆️ Upstream bump to OpenAI Codex rust-v0.77.0.
316
+ - 🧭 Single entrypoint confirmed: `codex` with no args opens TUI; `codex <prompt>` routes to exec; `codex-exec` kept as JS wrapper (no symlink).
309
317
  - 🔧 Termux patches #1–6, #8, #9 revalidated after merge (`verify-patches.sh`).
310
- - 📦 npm package bumped to 0.76.0-termux; packaged binary includes `codex` plus `codex-exec` wrapper (no symlink).
311
- - ✅ Tests: CODEX_TEST_SUITE v1.2 on Termux (2025-12-18) → 48 passed / 0 failed / 2 skipped (WebSearch disabled, git info skipped in non-repo workspace); Package & Binary 8/8 passed; Termux-Specific 10/10 passed.
318
+ - 📦 npm package bumped to 0.77.0-termux; packaged binary includes `codex` plus `codex-exec` wrapper (no symlink).
319
+ - ✅ Tests: CODEX_TEST_SUITE v1.2 on Termux (2025-12-21) → 48 passed / 0 failed / 2 skipped (WebSearch disabled, git info skipped in non-repo workspace); Package & Binary 8/8 passed; Termux-Specific 10/10 passed.
312
320
  - 🌟 **Official Upstream Highlights**:
313
321
  - Introducing gpt-5.2-codex our latest frontier model
314
322
  - Projects are now collapsed to a single folder in the file explorer
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.76.0-termux",
4
- "description": "OpenAI Codex CLI (upstream rust-v0.75.0) packaged as 0.76.0-termux – TUI + automation for Android Termux (ARM64). Use 'codex' for TUI, 'codex exec --json' for automation.",
3
+ "version": "0.77.1-termux",
4
+ "description": "OpenAI Codex CLI (upstream main, post rust-v0.77.0) packaged as 0.77.1-termux – TUI + automation for Android Termux (ARM64). Use 'codex' for TUI, 'codex exec --json' for automation.",
5
5
  "type": "module",
6
6
  "main": "bin/codex.js",
7
7
  "bin": {