@just-every/code 0.6.99 → 0.6.101
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 +5 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
- Stress tests now cover heavy agent churn plus concurrent Auto Review + Esc/typing responsiveness.
|
|
20
20
|
|
|
21
21
|
- **New/updated models and agents**
|
|
22
|
-
- Auto Drive CLI model support
|
|
23
|
-
- Frontline and alias-aware agent model handling now includes `code-gpt-5.
|
|
22
|
+
- Auto Drive CLI model support defaults to `gpt-5.5` (planning/problem-solving) and `gpt-5.4-mini` (fast coding/fix loops), with `medium | high | xhigh` reasoning controls.
|
|
23
|
+
- Frontline and alias-aware agent model handling now includes `code-gpt-5.5`, `code-gpt-5.4`, `claude-opus-4.8`, and `claude-sonnet-4.6`, with compatibility aliases for older model names where supported.
|
|
24
24
|
- Auto Drive decision schema and coordinator payloads now enforce bounded history while preserving goal and recent context.
|
|
25
25
|
|
|
26
26
|
See commit `60727b068` and related Auto Drive hardening commits in git history for details.
|
|
@@ -98,7 +98,7 @@ Note: If another tool already provides a `code` command (e.g. VS Code), our CLI
|
|
|
98
98
|
- **API key** (usage-based)
|
|
99
99
|
- Set `export OPENAI_API_KEY=xyz` and run `code`
|
|
100
100
|
|
|
101
|
-
### Install Claude & Gemini (optional)
|
|
101
|
+
### Install Claude, Antigravity & Gemini (optional)
|
|
102
102
|
|
|
103
103
|
Every Code supports orchestrating other AI CLI tools. Install these and config to use alongside Code.
|
|
104
104
|
|
|
@@ -114,9 +114,11 @@ export npm_config_prefix="${npm_config_prefix:-$HOME/.npm-global}"
|
|
|
114
114
|
mkdir -p "$npm_config_prefix/bin"
|
|
115
115
|
export PATH="$npm_config_prefix/bin:$PATH"
|
|
116
116
|
npm install -g @anthropic-ai/claude-code @google/gemini-cli @qwen-code/qwen-code
|
|
117
|
+
curl -fsSL https://antigravity.google/cli/install.sh | bash
|
|
117
118
|
|
|
118
119
|
# Quick smoke tests
|
|
119
120
|
claude --version
|
|
121
|
+
agy --version
|
|
120
122
|
gemini --version
|
|
121
123
|
qwen --version
|
|
122
124
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-every/code",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.101",
|
|
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.6.
|
|
39
|
-
"@just-every/code-darwin-x64": "0.6.
|
|
40
|
-
"@just-every/code-linux-x64-musl": "0.6.
|
|
41
|
-
"@just-every/code-linux-arm64-musl": "0.6.
|
|
42
|
-
"@just-every/code-win32-x64": "0.6.
|
|
38
|
+
"@just-every/code-darwin-arm64": "0.6.101",
|
|
39
|
+
"@just-every/code-darwin-x64": "0.6.101",
|
|
40
|
+
"@just-every/code-linux-x64-musl": "0.6.101",
|
|
41
|
+
"@just-every/code-linux-arm64-musl": "0.6.101",
|
|
42
|
+
"@just-every/code-win32-x64": "0.6.101"
|
|
43
43
|
}
|
|
44
44
|
}
|