@mmmbuto/codex-cli-termux 0.50.2-termux → 0.53.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.
- package/README.md +18 -15
- package/bin/codex +0 -0
- package/package.json +15 -14
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# @mmmbuto/codex-cli-termux
|
|
2
2
|
|
|
3
|
-
OpenAI Codex CLI pre-compiled for
|
|
3
|
+
> OpenAI Codex CLI v0.53.0 pre-compiled for Android Termux (ARM64)
|
|
4
|
+
|
|
5
|
+
## 🔔 v0.53.1-termux - Auto-Update Fix
|
|
6
|
+
|
|
7
|
+
This release fixes auto-update notifications to check the Termux fork instead of upstream OpenAI.
|
|
4
8
|
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
@@ -11,27 +15,26 @@ npm install -g @mmmbuto/codex-cli-termux
|
|
|
11
15
|
## Usage
|
|
12
16
|
|
|
13
17
|
```bash
|
|
14
|
-
codex
|
|
15
|
-
codex
|
|
18
|
+
codex login
|
|
19
|
+
codex
|
|
16
20
|
```
|
|
17
21
|
|
|
18
22
|
## Requirements
|
|
19
23
|
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
24
|
+
- Android 7+ (Termux)
|
|
25
|
+
- ARM64 architecture
|
|
26
|
+
- Node.js ≥ 14.0.0
|
|
23
27
|
|
|
24
|
-
##
|
|
28
|
+
## About
|
|
25
29
|
|
|
26
|
-
This
|
|
30
|
+
This is a pre-compiled build of the official OpenAI Codex CLI with minimal patches for Termux compatibility.
|
|
27
31
|
|
|
28
|
-
|
|
29
|
-
- **Fork**: [github.com/DioNanos/codex-termux](https://github.com/DioNanos/codex-termux)
|
|
32
|
+
## Links
|
|
30
33
|
|
|
31
|
-
|
|
34
|
+
- **GitHub**: https://github.com/DioNanos/codex-termux
|
|
35
|
+
- **Upstream**: https://github.com/openai/codex
|
|
36
|
+
- **Documentation**: https://github.com/DioNanos/codex-termux#readme
|
|
32
37
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
## Maintainer
|
|
38
|
+
## License
|
|
36
39
|
|
|
37
|
-
|
|
40
|
+
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.
|
|
4
|
-
"description": "OpenAI Codex CLI
|
|
3
|
+
"version": "0.53.1-termux",
|
|
4
|
+
"description": "OpenAI Codex CLI v0.53.0 with auto-update fix for Termux (Android ARM64)",
|
|
5
5
|
"main": "bin/codex",
|
|
6
6
|
"bin": {
|
|
7
|
-
"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
|
-
"
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=14.0.0"
|
|
33
|
+
},
|
|
30
34
|
"os": [
|
|
31
|
-
"
|
|
32
|
-
"
|
|
35
|
+
"android",
|
|
36
|
+
"linux"
|
|
33
37
|
],
|
|
34
38
|
"cpu": [
|
|
35
39
|
"arm64"
|
|
36
|
-
]
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=14.0.0"
|
|
39
|
-
}
|
|
40
|
+
]
|
|
40
41
|
}
|