shellx-cli 0.0.12 → 0.0.15
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/LICENSE +2 -2
- package/README.md +116 -238
- package/bundle/sandbox-macos-permissive-closed.sb +0 -0
- package/bundle/sandbox-macos-permissive-open.sb +3 -1
- package/bundle/sandbox-macos-permissive-proxied.sb +0 -0
- package/bundle/sandbox-macos-restrictive-closed.sb +0 -0
- package/bundle/sandbox-macos-restrictive-open.sb +0 -0
- package/bundle/sandbox-macos-restrictive-proxied.sb +0 -0
- package/bundle/shellx.js +363849 -250488
- package/package.json +59 -20
- package/bundle/assets/README.md +0 -5
- package/bundle/assets/shellx-linux-x86_64.zip +0 -0
- package/bundle/assets/shellx-macos-aarch64.zip +0 -0
- package/bundle/assets/shellx-macos-x86_64.zip +0 -0
- package/bundle/assets/shellx-win-x64.zip +0 -0
- package/bundle/assets/shellx-win-x86.zip +0 -0
- package/bundle/assets/shellx.apk +0 -0
- package/bundle/assets/shellx.apk.sha256 +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shellx-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -13,42 +13,61 @@
|
|
|
13
13
|
"url": "git+https://github.com/10cl/shellx-cli.git"
|
|
14
14
|
},
|
|
15
15
|
"config": {
|
|
16
|
-
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.
|
|
16
|
+
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.15.0-nightly.20251107.b8eeb553"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"start": "node scripts/start.js",
|
|
19
|
+
"start": "cross-env NODE_ENV=development node scripts/start.js",
|
|
20
20
|
"start:a2a-server": "CODER_AGENT_PORT=41242 npm run start --workspace @google/gemini-cli-a2a-server",
|
|
21
21
|
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
|
|
22
|
+
"deflake": "node scripts/deflake.js",
|
|
23
|
+
"deflake:test:integration:sandbox:none": "npm run deflake -- --command=\"npm run test:integration:sandbox:none -- --retry=0\"",
|
|
24
|
+
"deflake:test:integration:sandbox:docker": "npm run deflake -- --command=\"npm run test:integration:sandbox:docker -- --retry=0\"",
|
|
22
25
|
"auth:npm": "npx google-artifactregistry-auth",
|
|
23
26
|
"auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
|
|
24
27
|
"auth": "npm run auth:npm && npm run auth:docker",
|
|
25
28
|
"generate": "node scripts/generate-git-commit-info.js",
|
|
29
|
+
"predocs:settings": "npm run build --workspace @google/gemini-cli-core",
|
|
30
|
+
"schema:settings": "tsx ./scripts/generate-settings-schema.ts",
|
|
31
|
+
"docs:settings": "tsx ./scripts/generate-settings-doc.ts",
|
|
26
32
|
"build": "node scripts/build.js",
|
|
27
33
|
"build-and-start": "npm run build && npm run start",
|
|
28
34
|
"build:vscode": "node scripts/build_vscode_companion.js",
|
|
29
35
|
"build:all": "npm run build && npm run build:sandbox && npm run build:vscode",
|
|
30
|
-
"build:packages": "npm run build --workspaces",
|
|
31
|
-
"
|
|
36
|
+
"build:packages": "npm run build --workspace @google/gemini-cli-core && npm run build --workspace shellx-ai && npm run build --workspace shellx-binary && npm run build --workspace @shellx/shellx-cli-phone-agent && npm run build --workspaces",
|
|
37
|
+
"bundle-start": "npm run build:packages && npm run bundle && node bundle/shellx.js -d",
|
|
38
|
+
"bundle-build": "npm run build:packages && npm run bundle",
|
|
39
|
+
"build:sandbox": "node scripts/build_sandbox.js",
|
|
32
40
|
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
|
|
33
41
|
"test": "npm run test --workspaces --if-present",
|
|
34
42
|
"test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
|
|
35
43
|
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
|
|
36
44
|
"test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none",
|
|
37
45
|
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
|
|
38
|
-
"test:integration:sandbox:none": "GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
39
|
-
"test:integration:sandbox:docker": "GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
40
|
-
"test:integration:sandbox:podman": "GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
41
|
-
"lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
|
|
42
|
-
"lint:fix": "eslint . --fix && eslint integration-tests --fix",
|
|
43
|
-
"lint:ci": "
|
|
46
|
+
"test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
47
|
+
"test:integration:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && cross-env GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
48
|
+
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
49
|
+
"lint": "eslint . --ext .ts,.tsx && eslint integration-tests && eslint scripts",
|
|
50
|
+
"lint:fix": "eslint . --fix --ext .ts,.tsx && eslint integration-tests --fix && eslint scripts --fix && npm run format",
|
|
51
|
+
"lint:ci": "npm run lint:all",
|
|
52
|
+
"lint:all": "node scripts/lint.js",
|
|
44
53
|
"format": "prettier --experimental-cli --write .",
|
|
45
54
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
46
55
|
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
|
|
47
|
-
"prepare": "
|
|
56
|
+
"prepare": "husky",
|
|
48
57
|
"prepare:package": "node scripts/prepare-package.js",
|
|
49
58
|
"release:version": "node scripts/version.js",
|
|
50
59
|
"telemetry": "node scripts/telemetry.js",
|
|
51
|
-
"
|
|
60
|
+
"check:lockfile": "node scripts/check-lockfile.js",
|
|
61
|
+
"clean": "node scripts/clean.js",
|
|
62
|
+
"pre-commit": "node scripts/pre-commit.js",
|
|
63
|
+
"test:phone-agent": "tsx ./packages/phone-agent/examples/basic-usage.ts"
|
|
64
|
+
},
|
|
65
|
+
"overrides": {
|
|
66
|
+
"ink": "npm:@jrichman/ink@6.4.1",
|
|
67
|
+
"wrap-ansi": "9.0.2",
|
|
68
|
+
"cliui": {
|
|
69
|
+
"wrap-ansi": "7.0.0"
|
|
70
|
+
}
|
|
52
71
|
},
|
|
53
72
|
"bin": {
|
|
54
73
|
"shellx": "bundle/shellx.js"
|
|
@@ -59,16 +78,20 @@
|
|
|
59
78
|
"LICENSE"
|
|
60
79
|
],
|
|
61
80
|
"devDependencies": {
|
|
81
|
+
"@octokit/rest": "^22.0.0",
|
|
62
82
|
"@types/marked": "^5.0.2",
|
|
63
83
|
"@types/mime-types": "^3.0.1",
|
|
64
84
|
"@types/minimatch": "^5.1.2",
|
|
65
85
|
"@types/mock-fs": "^4.13.4",
|
|
86
|
+
"@types/prompts": "^2.4.9",
|
|
87
|
+
"@types/react": "^19.2.0",
|
|
88
|
+
"@types/react-dom": "^19.2.0",
|
|
66
89
|
"@types/shell-quote": "^1.7.5",
|
|
67
90
|
"@vitest/coverage-v8": "^3.1.1",
|
|
68
91
|
"@vitest/eslint-plugin": "^1.3.4",
|
|
69
|
-
"concurrently": "^9.2.0",
|
|
70
92
|
"cross-env": "^7.0.3",
|
|
71
93
|
"esbuild": "^0.25.0",
|
|
94
|
+
"esbuild-plugin-wasm": "^1.1.0",
|
|
72
95
|
"eslint": "^9.24.0",
|
|
73
96
|
"eslint-config-prettier": "^10.1.2",
|
|
74
97
|
"eslint-plugin-import": "^2.31.0",
|
|
@@ -77,24 +100,28 @@
|
|
|
77
100
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
78
101
|
"glob": "^10.4.5",
|
|
79
102
|
"globals": "^16.0.0",
|
|
103
|
+
"google-artifactregistry-auth": "^3.4.0",
|
|
104
|
+
"husky": "^9.1.7",
|
|
105
|
+
"ink-testing-library": "^4.0.0",
|
|
80
106
|
"json": "^11.0.0",
|
|
81
|
-
"
|
|
82
|
-
"memfs": "^4.
|
|
107
|
+
"lint-staged": "^16.1.6",
|
|
108
|
+
"memfs": "^4.42.0",
|
|
83
109
|
"mnemonist": "^0.40.3",
|
|
84
110
|
"mock-fs": "^5.5.0",
|
|
85
111
|
"msw": "^2.10.4",
|
|
112
|
+
"npm-run-all": "^4.1.5",
|
|
86
113
|
"prettier": "^3.5.3",
|
|
87
|
-
"react-devtools-core": "^
|
|
114
|
+
"react-devtools-core": "^6.1.2",
|
|
115
|
+
"semver": "^7.7.2",
|
|
116
|
+
"strip-ansi": "^7.1.2",
|
|
88
117
|
"tsx": "^4.20.3",
|
|
89
118
|
"typescript-eslint": "^8.30.1",
|
|
90
119
|
"vitest": "^3.2.4",
|
|
91
120
|
"yargs": "^17.7.2"
|
|
92
121
|
},
|
|
93
122
|
"dependencies": {
|
|
94
|
-
"
|
|
123
|
+
"latest-version": "^9.0.0",
|
|
95
124
|
"simple-git": "^3.28.0",
|
|
96
|
-
"strip-ansi": "^7.1.0",
|
|
97
|
-
"yauzl": "^3.2.0",
|
|
98
125
|
"eval": "^0.1.8"
|
|
99
126
|
},
|
|
100
127
|
"optionalDependencies": {
|
|
@@ -105,5 +132,17 @@
|
|
|
105
132
|
"@lydell/node-pty-win32-arm64": "1.1.0",
|
|
106
133
|
"@lydell/node-pty-win32-x64": "1.1.0",
|
|
107
134
|
"node-pty": "^1.0.0"
|
|
135
|
+
},
|
|
136
|
+
"lint-staged": {
|
|
137
|
+
"*.{js,jsx,ts,tsx}": [
|
|
138
|
+
"prettier --write",
|
|
139
|
+
"eslint --fix --max-warnings 0 --no-warn-ignored"
|
|
140
|
+
],
|
|
141
|
+
"eslint.config.js": [
|
|
142
|
+
"prettier --write"
|
|
143
|
+
],
|
|
144
|
+
"*.{json,md}": [
|
|
145
|
+
"prettier --write"
|
|
146
|
+
]
|
|
108
147
|
}
|
|
109
148
|
}
|
package/bundle/assets/README.md
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bundle/assets/shellx.apk
DELETED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
7306e895435f5ee2758e92d34a4d82a581a854eebaa1448378c7437a2a79d3b8 *shellx.apk
|