@mmmbuto/codex-cli-termux 0.50.2-termux → 0.53.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 +14 -15
  2. package/bin/codex +0 -0
  3. package/package.json +15 -14
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mmmbuto/codex-cli-termux
2
2
 
3
- OpenAI Codex CLI pre-compiled for ARM64 Termux (Android).
3
+ > OpenAI Codex CLI v0.53.0 pre-compiled for Android Termux (ARM64)
4
4
 
5
5
  ## Installation
6
6
 
@@ -11,27 +11,26 @@ npm install -g @mmmbuto/codex-cli-termux
11
11
  ## Usage
12
12
 
13
13
  ```bash
14
- codex --help
15
- codex --version
14
+ codex login
15
+ codex
16
16
  ```
17
17
 
18
18
  ## Requirements
19
19
 
20
- - **Platform**: Android with Termux
21
- - **Architecture**: ARM64
22
- - **Node.js**: ≥ 14.0.0
20
+ - Android 7+ (Termux)
21
+ - ARM64 architecture
22
+ - Node.js ≥ 14.0.0
23
23
 
24
- ## Source
24
+ ## About
25
25
 
26
- This package contains a pre-compiled binary of [OpenAI Codex](https://github.com/openai/codex) for ARM64 Termux.
26
+ This is a pre-compiled build of the official OpenAI Codex CLI with minimal patches for Termux compatibility.
27
27
 
28
- - **Upstream**: [github.com/openai/codex](https://github.com/openai/codex)
29
- - **Fork**: [github.com/DioNanos/codex-termux](https://github.com/DioNanos/codex-termux)
28
+ ## Links
30
29
 
31
- ## License
32
-
33
- Apache 2.0 - See [LICENSE](https://github.com/DioNanos/codex-termux/blob/main/LICENSE)
30
+ - **GitHub**: https://github.com/DioNanos/codex-termux
31
+ - **Upstream**: https://github.com/openai/codex
32
+ - **Documentation**: https://github.com/DioNanos/codex-termux#readme
34
33
 
35
- ## Maintainer
34
+ ## License
36
35
 
37
- Davide A. Guglielmi <dev@mmmbuto.com>
36
+ Apache-2.0 (same as upstream OpenAI Codex)
package/bin/codex CHANGED
Binary file
package/package.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "name": "@mmmbuto/codex-cli-termux",
3
- "version": "0.50.2-termux",
4
- "description": "OpenAI Codex CLI compiled for ARM64 Termux (Android)",
3
+ "version": "0.53.0-termux",
4
+ "description": "OpenAI Codex CLI v0.53.0 compiled for ARM64 Termux (Android)",
5
5
  "main": "bin/codex",
6
6
  "bin": {
7
- "codex": "./bin/codex"
8
- },
9
- "scripts": {
10
- "postinstall": "echo '✅ @mmmbuto/codex-cli-termux installed successfully'"
7
+ "codex": "bin/codex"
11
8
  },
9
+ "files": [
10
+ "bin/codex"
11
+ ],
12
12
  "keywords": [
13
13
  "codex",
14
14
  "openai",
15
15
  "termux",
16
16
  "android",
17
17
  "arm64",
18
- "cli"
18
+ "cli",
19
+ "ai"
19
20
  ],
20
21
  "author": "Davide A. Guglielmi <dev@mmmbuto.com>",
21
22
  "license": "Apache-2.0",
@@ -23,18 +24,18 @@
23
24
  "type": "git",
24
25
  "url": "https://github.com/DioNanos/codex-termux.git"
25
26
  },
27
+ "homepage": "https://github.com/DioNanos/codex-termux#readme",
26
28
  "bugs": {
27
29
  "url": "https://github.com/DioNanos/codex-termux/issues"
28
30
  },
29
- "homepage": "https://github.com/DioNanos/codex-termux#readme",
31
+ "engines": {
32
+ "node": ">=14.0.0"
33
+ },
30
34
  "os": [
31
- "linux",
32
- "android"
35
+ "android",
36
+ "linux"
33
37
  ],
34
38
  "cpu": [
35
39
  "arm64"
36
- ],
37
- "engines": {
38
- "node": ">=14.0.0"
39
- }
40
+ ]
40
41
  }