@mmmbuto/gemini-cli-termux 0.21.3-termux → 0.22.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 +9 -8
- package/bundle/gemini.js +273351 -260296
- package/bundle/policies/agent.toml +31 -0
- package/bundle/policies/read-only.toml +5 -0
- package/package.json +4 -3
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.
|
|
30
|
+
gemini --version # expected: 0.22.0-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.
|
|
59
|
+
- **[Test Results](./GEMINI_TEST_REPORT_v0.22.0.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,14 +96,14 @@ npm install -g @mmmbuto/gemini-cli-termux@latest
|
|
|
96
96
|
|
|
97
97
|
### Versions
|
|
98
98
|
|
|
99
|
-
- **latest**: 0.
|
|
100
|
-
- **stable**: 0.
|
|
99
|
+
- **latest**: 0.22.0-termux (this build)
|
|
100
|
+
- **stable**: 0.22.0-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.
|
|
106
|
+
[`GEMINI_TEST_REPORT_v0.22.0.md`](./GEMINI_TEST_REPORT_v0.22.0.md)
|
|
107
107
|
- PASS with warnings (node-pty optional missing log; `--version --json`
|
|
108
108
|
outputs plain string; config-path flag unsupported; extensions settings
|
|
109
109
|
needs subcommand).
|
|
@@ -114,8 +114,9 @@ npm install -g @mmmbuto/gemini-cli-termux@latest
|
|
|
114
114
|
|
|
115
115
|
## Changelog (Termux)
|
|
116
116
|
|
|
117
|
-
- **0.
|
|
118
|
-
|
|
117
|
+
- **0.22.0-termux**: Sync with upstream (0.21.0-nightly); added hide banner
|
|
118
|
+
patch; restored ARM64 dependency.
|
|
119
|
+
- **0.21.4-termux**: (Previous)
|
|
119
120
|
|
|
120
121
|
## Upstream Tracking
|
|
121
122
|
|