@mmmbuto/codex-cli-termux 0.71.0-termux → 0.72.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 CHANGED
@@ -78,7 +78,7 @@ npm install -g @mmmbuto/codex-cli-termux
78
78
 
79
79
  ```bash
80
80
  codex --version
81
- # Output: codex-cli 0.71.0
81
+ # Output: codex-cli 0.72.0
82
82
 
83
83
  codex login
84
84
  # Opens browser for authentication
@@ -231,12 +231,12 @@ Codex will automatically:
231
231
  - At least 80% overall pass rate
232
232
  - No critical crashes
233
233
 
234
- **Example Report** (v0.71.0):
234
+ **Example Report** (v0.72.0):
235
235
  ```
236
236
  CODEX CLI TEST SUITE - FINAL REPORT
237
237
  ====================================
238
238
  Platform: Android Termux ARM64 (ROG Phone 3)
239
- Codex Version: 0.71.0
239
+ Codex Version: 0.72.0
240
240
  Total Tests: 49
241
241
  ✅ Passed: 49
242
242
  ❌ Failed: 0
@@ -292,7 +292,7 @@ See [LICENSE](./LICENSE) file for details.
292
292
 
293
293
  ---
294
294
 
295
- **Version**: Based on OpenAI Codex 0.71.0 (adds GPT-5.2 support)
295
+ **Version**: Based on OpenAI Codex 0.72.0 (adds OTEL tracing + config loader refresh)
296
296
  **Platform**: Android Termux ARM64
297
297
  **Maintained**: Community-driven, not affiliated with OpenAI
298
298
 
@@ -300,9 +300,18 @@ See [LICENSE](./LICENSE) file for details.
300
300
 
301
301
  ## 📜 Changelog
302
302
 
303
- ### v0.71.0-termux (2025-12-12) – latest
303
+ ### v0.72.0-termux (2025-12-13) – latest
304
304
  **Dist-tag**: `latest`
305
305
 
306
+ - ⬆️ Upstream bump to OpenAI Codex rust-v0.72.0 (OTEL tracing, config loader rewrite, notifications).
307
+ - 🧭 Single entrypoint: `codex` with no args opens TUI; `codex <prompt>` routes to exec; `codex-exec` kept as alias wrapper.
308
+ - 🔧 Termux patches #1–6, #8, #9 revalidated after merge (verify-patches.sh).
309
+ - 📦 npm package bumped to 0.72.0-termux; binary packaged once with symlinked `codex-exec`.
310
+ - ✅ Tests: build + install on Termux pending (run in this session).
311
+
312
+ ### v0.71.0-termux (2025-12-12) – stable
313
+ **Dist-tag**: `stable`
314
+
306
315
  - ⬆️ Upstream bump to OpenAI Codex rust-v0.71.0 (gpt-5.2 models, TUI2 refinements, policy refresh).
307
316
  - 🔧 Termux patches #1–6, #8, #9 revalidated; release profile kept RAM-friendly (lto=false, codegen-units=16).
308
317
  - 🖥️ Single entrypoint confirmed: `codex` serves both TUI and automation; `codex-exec` remains alias wrapper (JS launcher unchanged).
package/bin/codex CHANGED
Binary file
package/bin/codex.js CHANGED
@@ -9,9 +9,10 @@ const __dirname = dirname(__filename);
9
9
 
10
10
  const binaryPath = join(__dirname, 'codex');
11
11
 
12
- // Default behavior: `codex` acts like `codex exec ...` unless a known
13
- // subcommand is explicitly provided. This avoids needing a separate
14
- // codex-exec entry point while keeping TUI available via `codex tui`.
12
+ // Default behavior:
13
+ // - `codex` (no args) starts the TUI (same as upstream).
14
+ // - `codex <prompt>` runs `codex exec <prompt>` for convenience.
15
+ // - `codex <known-subcommand|--flag>` passes args through unchanged.
15
16
  const knownSubcommands = new Set([
16
17
  'exec',
17
18
  'review',
@@ -37,7 +38,8 @@ const first = args[0];
37
38
  const isOption = first?.startsWith('-');
38
39
  const isKnownSubcommand = first && knownSubcommands.has(first);
39
40
 
40
- const finalArgs = isOption || isKnownSubcommand ? args : ['exec', ...args];
41
+ const finalArgs =
42
+ args.length === 0 ? [] : isOption || isKnownSubcommand ? args : ['exec', ...args];
41
43
 
42
44
  const child = spawn(binaryPath, finalArgs, {
43
45
  stdio: 'inherit',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mmmbuto/codex-cli-termux",
3
- "version": "0.71.0-termux",
4
- "description": "OpenAI Codex CLI v0.71.0 (gpt-5.2) - Multitool with TUI + automation mode. Pre-compiled for Android Termux (ARM64). Use 'codex' for TUI, 'codex exec --json' for automation.",
3
+ "version": "0.72.0-termux",
4
+ "description": "OpenAI Codex CLI v0.72.0 (gpt-5.2) - Multitool with TUI + automation mode. Pre-compiled 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": {