@just-every/code 0.2.182 → 0.2.184
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 +18 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -60,10 +60,26 @@ Note: If another tool already provides a `code` command (e.g. VS Code), our CLI
|
|
|
60
60
|
Code supports orchestrating other AI CLI tools. Install these and config to use alongside Code.
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
|
|
64
|
-
npm install -g
|
|
63
|
+
# Ensure Node.js 20+ is available locally (installs into ~/.n)
|
|
64
|
+
npm install -g n
|
|
65
|
+
export N_PREFIX="$HOME/.n"
|
|
66
|
+
export PATH="$N_PREFIX/bin:$PATH"
|
|
67
|
+
n 20.18.1
|
|
68
|
+
|
|
69
|
+
# Install the companion CLIs
|
|
70
|
+
export npm_config_prefix="${npm_config_prefix:-$HOME/.npm-global}"
|
|
71
|
+
mkdir -p "$npm_config_prefix/bin"
|
|
72
|
+
export PATH="$npm_config_prefix/bin:$PATH"
|
|
73
|
+
npm install -g @anthropic-ai/claude-code @google/gemini-cli @qwen-code/qwen-code
|
|
74
|
+
|
|
75
|
+
# Quick smoke tests
|
|
76
|
+
claude --version
|
|
77
|
+
gemini --version
|
|
78
|
+
qwen --version
|
|
65
79
|
```
|
|
66
80
|
|
|
81
|
+
> ℹ️ Add `export N_PREFIX="$HOME/.n"` and `export PATH="$N_PREFIX/bin:$PATH"` (plus the `npm_config_prefix` bin path) to your shell profile so the CLIs stay on `PATH` in future sessions.
|
|
82
|
+
|
|
67
83
|
 
|
|
68
84
|
## Commands
|
|
69
85
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-every/code",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.184",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Lightweight coding agent that runs in your terminal - fork of OpenAI Codex",
|
|
6
6
|
"bin": {
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"prettier": "^3.3.3"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@just-every/code-darwin-arm64": "0.2.
|
|
39
|
-
"@just-every/code-darwin-x64": "0.2.
|
|
40
|
-
"@just-every/code-linux-x64-musl": "0.2.
|
|
41
|
-
"@just-every/code-linux-arm64-musl": "0.2.
|
|
42
|
-
"@just-every/code-win32-x64": "0.2.
|
|
38
|
+
"@just-every/code-darwin-arm64": "0.2.184",
|
|
39
|
+
"@just-every/code-darwin-x64": "0.2.184",
|
|
40
|
+
"@just-every/code-linux-x64-musl": "0.2.184",
|
|
41
|
+
"@just-every/code-linux-arm64-musl": "0.2.184",
|
|
42
|
+
"@just-every/code-win32-x64": "0.2.184"
|
|
43
43
|
}
|
|
44
44
|
}
|