shellx-cli 0.0.16 → 0.0.17
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 +8 -8
- package/bundle/shellx.js +9 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
4
4
|
[](https://nodejs.org/)
|
|
5
5
|
|
|
6
|
-
**ShellX CLI** is a powerful command-line interface that combines
|
|
6
|
+
**ShellX CLI** is a powerful command-line interface that combines advanced AI intelligence with Android device automation capabilities. It provides seamless shell command execution, UI automation, and AI-powered assistance for Android development and testing.
|
|
7
7
|
|
|
8
8
|
## ✨ Features
|
|
9
9
|
|
|
10
10
|
### 🤖 AI-Powered Assistance
|
|
11
|
-
- **
|
|
11
|
+
- **AI Integration**: Direct access to advanced AI models through an intuitive CLI
|
|
12
12
|
- **Code Generation**: Generate code, scripts, and automation workflows
|
|
13
13
|
- **Smart Debugging**: AI-assisted troubleshooting and error analysis
|
|
14
14
|
- **Natural Language Commands**: Execute complex tasks using natural language
|
|
@@ -46,7 +46,7 @@ npm install -g shellx-cli
|
|
|
46
46
|
|
|
47
47
|
#### From Source
|
|
48
48
|
```bash
|
|
49
|
-
git clone https://github.com/10cl/shellx
|
|
49
|
+
git clone https://github.com/10cl/shellx.git
|
|
50
50
|
cd shellx-cli
|
|
51
51
|
npm install
|
|
52
52
|
npm run build
|
|
@@ -89,8 +89,8 @@ This is a monorepo containing several key packages:
|
|
|
89
89
|
```
|
|
90
90
|
shellx-cli/
|
|
91
91
|
├── packages/
|
|
92
|
-
│ ├── cli/ # Main CLI interface
|
|
93
|
-
│ ├── core/ # Core functionality
|
|
92
|
+
│ ├── cli/ # Main CLI interface
|
|
93
|
+
│ ├── core/ # Core functionality
|
|
94
94
|
│ ├── shellx-ai/ # Android automation library
|
|
95
95
|
│ ├── a2a-server/ # Agent-to-Agent server
|
|
96
96
|
│ ├── phone-agent/ # Phone automation agent
|
|
@@ -113,7 +113,7 @@ shellx-cli/
|
|
|
113
113
|
|
|
114
114
|
1. **Clone the repository**:
|
|
115
115
|
```bash
|
|
116
|
-
git clone https://github.com/10cl/shellx
|
|
116
|
+
git clone https://github.com/10cl/shellx.git
|
|
117
117
|
cd shellx-cli
|
|
118
118
|
```
|
|
119
119
|
|
|
@@ -174,8 +174,8 @@ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENS
|
|
|
174
174
|
|
|
175
175
|
## 🆘 Support
|
|
176
176
|
|
|
177
|
-
- 📚 [Documentation](https://github.com/10cl/shellx
|
|
178
|
-
- 🐛 [GitHub Issues](https://github.com/10cl/shellx
|
|
177
|
+
- 📚 [Documentation](https://github.com/10cl/shellx)
|
|
178
|
+
- 🐛 [GitHub Issues](https://github.com/10cl/shellx/issues)
|
|
179
179
|
- 📧 [Email Support](mailto:notice@toscl.com)
|
|
180
180
|
|
|
181
181
|
## 🙏 Acknowledgments
|
package/bundle/shellx.js
CHANGED
|
@@ -143076,8 +143076,8 @@ var GIT_COMMIT_INFO, CLI_VERSION;
|
|
|
143076
143076
|
var init_git_commit = __esm({
|
|
143077
143077
|
"packages/core/dist/src/generated/git-commit.js"() {
|
|
143078
143078
|
"use strict";
|
|
143079
|
-
GIT_COMMIT_INFO = "
|
|
143080
|
-
CLI_VERSION = "0.0.
|
|
143079
|
+
GIT_COMMIT_INFO = "1f1e9cb2";
|
|
143080
|
+
CLI_VERSION = "0.0.16";
|
|
143081
143081
|
}
|
|
143082
143082
|
});
|
|
143083
143083
|
|
|
@@ -233003,7 +233003,7 @@ async function createContentGenerator(config, gcConfig, sessionId2) {
|
|
|
233003
233003
|
if (gcConfig.fakeResponses) {
|
|
233004
233004
|
return FakeContentGenerator.fromFile(gcConfig.fakeResponses);
|
|
233005
233005
|
}
|
|
233006
|
-
const version3 = "0.0.
|
|
233006
|
+
const version3 = "0.0.17";
|
|
233007
233007
|
const userAgent = `GeminiCLI/${version3} (${process.platform}; ${process.arch})`;
|
|
233008
233008
|
const baseHeaders = {
|
|
233009
233009
|
"User-Agent": userAgent
|
|
@@ -302330,7 +302330,7 @@ async function getClientMetadata() {
|
|
|
302330
302330
|
if (!clientMetadataPromise) {
|
|
302331
302331
|
clientMetadataPromise = (async () => ({
|
|
302332
302332
|
ideName: "GEMINI_CLI",
|
|
302333
|
-
ideVersion: "0.0.
|
|
302333
|
+
ideVersion: "0.0.17",
|
|
302334
302334
|
platform: getPlatform(),
|
|
302335
302335
|
updateChannel: await getReleaseChannel(__dirname3)
|
|
302336
302336
|
}))();
|
|
@@ -415141,7 +415141,7 @@ var WarningMessage = ({ text }) => {
|
|
|
415141
415141
|
};
|
|
415142
415142
|
|
|
415143
415143
|
// packages/cli/src/generated/git-commit.ts
|
|
415144
|
-
var GIT_COMMIT_INFO2 = "
|
|
415144
|
+
var GIT_COMMIT_INFO2 = "1f1e9cb2";
|
|
415145
415145
|
|
|
415146
415146
|
// packages/cli/src/ui/components/AboutBox.tsx
|
|
415147
415147
|
var import_jsx_runtime25 = __toESM(require_jsx_runtime(), 1);
|
|
@@ -428881,7 +428881,7 @@ var __filename3 = fileURLToPath10(import.meta.url);
|
|
|
428881
428881
|
var __dirname7 = path59.dirname(__filename3);
|
|
428882
428882
|
async function getCliVersion() {
|
|
428883
428883
|
const pkgJson = await getPackageJson(__dirname7);
|
|
428884
|
-
return "0.0.
|
|
428884
|
+
return "0.0.17";
|
|
428885
428885
|
}
|
|
428886
428886
|
|
|
428887
428887
|
// packages/cli/src/ui/commands/aboutCommand.ts
|
|
@@ -452559,6 +452559,9 @@ async function startInteractiveUI(config, settings, startupWarnings, workspaceRo
|
|
|
452559
452559
|
async function main() {
|
|
452560
452560
|
setupUnhandledRejectionHandler();
|
|
452561
452561
|
const settings = loadSettings();
|
|
452562
|
+
if (!process.env["OPENROUTER_API_KEY"] && (!settings.merged.security?.auth?.selectedType || settings.merged.security?.auth?.selectedType === AuthType2.USE_OPENROUTER)) {
|
|
452563
|
+
process.env["OPENROUTER_API_KEY"] = "OPENROUTER_API_KEY";
|
|
452564
|
+
}
|
|
452562
452565
|
migrateDeprecatedSettings(
|
|
452563
452566
|
settings,
|
|
452564
452567
|
// Temporary extension manager only used during this non-interactive UI phase.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shellx-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
],
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/10cl/shellx
|
|
13
|
+
"url": "git+https://github.com/10cl/shellx.git"
|
|
14
14
|
},
|
|
15
15
|
"config": {
|
|
16
16
|
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.15.0-nightly.20251107.b8eeb553"
|