@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.
- package/README.md +14 -15
- package/bin/codex +0 -0
- 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
|
|
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
|
|
15
|
-
codex
|
|
14
|
+
codex login
|
|
15
|
+
codex
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Requirements
|
|
19
19
|
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
20
|
+
- Android 7+ (Termux)
|
|
21
|
+
- ARM64 architecture
|
|
22
|
+
- Node.js ≥ 14.0.0
|
|
23
23
|
|
|
24
|
-
##
|
|
24
|
+
## About
|
|
25
25
|
|
|
26
|
-
This
|
|
26
|
+
This is a pre-compiled build of the official OpenAI Codex CLI with minimal patches for Termux compatibility.
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
- **Fork**: [github.com/DioNanos/codex-termux](https://github.com/DioNanos/codex-termux)
|
|
28
|
+
## Links
|
|
30
29
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
##
|
|
34
|
+
## License
|
|
36
35
|
|
|
37
|
-
|
|
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.
|
|
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": "
|
|
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
|
}
|