@mmmbuto/gemini-cli-termux 0.21.2-termux → 0.21.4-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 +11 -10
- package/bundle/gemini.js +4662 -3362
- package/bundle/policies/agent.toml +31 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Temporary compatibility fork of `google-gemini/gemini-cli` for Android Termux.
|
|
|
15
15
|
|
|
16
16
|
- Tracks upstream regularly.
|
|
17
17
|
- Minimal patches only: Termux clipboard env fix, native modules marked
|
|
18
|
-
optional.
|
|
18
|
+
optional, PTY auto-disabled on Termux (fallback to child_process).
|
|
19
19
|
- Bundled for ARM64/Android.
|
|
20
20
|
- Sunset: once upstream adds Termux support, migrate back to
|
|
21
21
|
`@google/gemini-cli`.
|
|
@@ -27,7 +27,7 @@ pkg update && pkg upgrade -y
|
|
|
27
27
|
pkg install nodejs-lts -y
|
|
28
28
|
npm install -g @mmmbuto/gemini-cli-termux
|
|
29
29
|
|
|
30
|
-
gemini --version # expected: 0.21.
|
|
30
|
+
gemini --version # expected: 0.21.4-termux (latest)
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Build from source:
|
|
@@ -56,7 +56,7 @@ node bundle/gemini.js --version
|
|
|
56
56
|
|
|
57
57
|
### 📚 Complete Documentation
|
|
58
58
|
|
|
59
|
-
- **[Test Results](./GEMINI_TEST_REPORT_v0.21.
|
|
59
|
+
- **[Test Results](./GEMINI_TEST_REPORT_v0.21.3.md)** - Comprehensive test
|
|
60
60
|
report with analysis
|
|
61
61
|
- **[Test Suite](./GEMINI_TEST_SUITE.md)** - Test methodology and checklist
|
|
62
62
|
- **[Patches & Fixes](./docs/patches/)** - Known issues and workarounds
|
|
@@ -96,18 +96,19 @@ npm install -g @mmmbuto/gemini-cli-termux@latest
|
|
|
96
96
|
|
|
97
97
|
### Versions
|
|
98
98
|
|
|
99
|
-
- **latest**: 0.21.
|
|
100
|
-
- **stable**: 0.21.
|
|
99
|
+
- **latest**: 0.21.3-termux (this build)
|
|
100
|
+
- **stable**: 0.21.3-termux
|
|
101
101
|
|
|
102
102
|
## Tests
|
|
103
103
|
|
|
104
104
|
- Suite: [`GEMINI_TEST_SUITE.md`](./GEMINI_TEST_SUITE.md)
|
|
105
105
|
- Latest report:
|
|
106
|
-
[`GEMINI_TEST_REPORT_v0.21.
|
|
107
|
-
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
-
|
|
106
|
+
[`GEMINI_TEST_REPORT_v0.21.3.md`](./GEMINI_TEST_REPORT_v0.21.3.md)
|
|
107
|
+
- PASS with warnings (node-pty optional missing log; `--version --json`
|
|
108
|
+
outputs plain string; config-path flag unsupported; extensions settings
|
|
109
|
+
needs subcommand).
|
|
110
|
+
- Non-interactive/file tests executed via agent; Termux checks pass;
|
|
111
|
+
package/bundle verified.
|
|
111
112
|
- Optional native modules (node-pty, keytar, tree-sitter-bash) not built on
|
|
112
113
|
Termux → warnings expected; CLI remains functional.
|
|
113
114
|
|