@just-every/code 0.4.2 → 0.4.4
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 +20 -26
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
 
|
|
14
14
|
## What's new in v0.4.0 (October 26, 2025)
|
|
15
15
|
|
|
16
|
-
- **Auto Drive
|
|
17
|
-
- **Unified settings
|
|
18
|
-
- **Card-based activity
|
|
16
|
+
- **Auto Drive upgraded** – hand `/auto` a task and it now plans, coordinates agents, reruns checks, and recovers from hiccups without babysitting.
|
|
17
|
+
- **Unified settings** – `/settings` centralizes limits, model routing, themes, and CLI integrations so you can audit configuration in one place.
|
|
18
|
+
- **Card-based activity** – Agents, browser sessions, web search, and Auto Drive render as compact cards with drill-down overlays for full logs.
|
|
19
19
|
- **Turbocharged performance** – History rendering and streaming were optimized to stay smooth even during long multi-agent sessions.
|
|
20
|
-
- **Smarter
|
|
20
|
+
- **Smarter agents** – Mix and match orchestrator CLIs (Claude, Gemini, GPT-5, Qwen, and more) per `/plan`, `/code`, or `/solve` run.
|
|
21
21
|
|
|
22
22
|
Read the full notes in `release-notes/RELEASE_NOTES.md`.
|
|
23
23
|
|
|
@@ -32,30 +32,25 @@ Read the full notes in `release-notes/RELEASE_NOTES.md`.
|
|
|
32
32
|
- 🔌 **MCP support** – Extend with filesystem, DBs, APIs, or your own tools.
|
|
33
33
|
- 🔒 **Safety modes** – Read-only, approvals, and workspace sandboxing.
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
<video width="100%" controls playsinline>
|
|
38
|
-
<source src="https://upload.justevery.com/AutoDrive.webm" type="video/webm">
|
|
39
|
-
<source src="https://upload.justevery.com/AutoDrive.mp4" type="video/mp4">
|
|
40
|
-
Your browser does not support embedded videos. Watch the <a href="https://upload.justevery.com/AutoDrive.mp4">Auto Drive demo</a> instead.
|
|
41
|
-
</video>
|
|
42
|
-
</p>
|
|
35
|
+
 
|
|
36
|
+
## AI Videos
|
|
43
37
|
|
|
38
|
+
 
|
|
44
39
|
<p align="center">
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
Your browser does not support embedded videos. Watch the <a href="https://upload.justevery.com/v0-3.mp4">v0.3 overview</a> instead.
|
|
50
|
-
</video>
|
|
40
|
+
<a href="https://youtu.be/UOASHZPruQk">
|
|
41
|
+
<img src="docs/screenshots/video-auto-drive-new-play.jpg" alt="Play Introducing Auto Drive video" width="100%">
|
|
42
|
+
</a><br>
|
|
43
|
+
<strong>Auto Drive Overview</strong>
|
|
51
44
|
</p>
|
|
52
45
|
|
|
53
46
|
 
|
|
54
|
-
|
|
55
|
-
|
|
47
|
+
<p align="center">
|
|
48
|
+
<a href="https://youtu.be/sV317OhiysQ">
|
|
49
|
+
<img src="docs/screenshots/video-v03-play.jpg" alt="Play Multi-Agent Support video" width="100%">
|
|
50
|
+
</a><br>
|
|
51
|
+
<strong>Multi-Agent Promo</strong>
|
|
52
|
+
</p>
|
|
56
53
|
|
|
57
|
-
| <br><img src="docs/screenshots/browser.png" alt="Browser control" width="100%"><br>Browser control | <br><img src="docs/screenshots/agents.png" alt="Assist with Claude & Gemini" width="100%"><br>Assist with Claude & Gemini |
|
|
58
|
-
|:--:|:--:|
|
|
59
54
|
|
|
60
55
|
|
|
61
56
|
 
|
|
@@ -79,7 +74,6 @@ Note: If another tool already provides a `code` command (e.g. VS Code), our CLI
|
|
|
79
74
|
**Authenticate** (one of the following):
|
|
80
75
|
- **Sign in with ChatGPT** (Plus/Pro/Team; uses models available to your plan)
|
|
81
76
|
- Run `code` and pick "Sign in with ChatGPT"
|
|
82
|
-
- Stores creds locally at `~/.code/auth.json` (still reads legacy `~/.codex/auth.json` if present)
|
|
83
77
|
- **API key** (usage-based)
|
|
84
78
|
- Set `export OPENAI_API_KEY=xyz` and run `code`
|
|
85
79
|
|
|
@@ -226,7 +220,7 @@ Code supports MCP for extended capabilities:
|
|
|
226
220
|
- **API integrations**: Connect to external services
|
|
227
221
|
- **Custom tools**: Build your own extensions
|
|
228
222
|
|
|
229
|
-
Configure MCP in `~/.code/config.toml`
|
|
223
|
+
Configure MCP in `~/.code/config.toml` Define each server under a named table like `[mcp_servers.<name>]` (this maps to the JSON `mcpServers` object used by other clients):
|
|
230
224
|
|
|
231
225
|
```toml
|
|
232
226
|
[mcp_servers.filesystem]
|
|
@@ -267,7 +261,7 @@ model_reasoning_summary = "detailed"
|
|
|
267
261
|
|
|
268
262
|
### Environment variables
|
|
269
263
|
|
|
270
|
-
- `
|
|
264
|
+
- `CODE_HOME`: Override config directory location
|
|
271
265
|
- `OPENAI_API_KEY`: Use API key instead of ChatGPT auth
|
|
272
266
|
- `OPENAI_BASE_URL`: Use alternative API endpoints
|
|
273
267
|
- `OPENAI_WIRE_API`: Force the built-in OpenAI provider to use `chat` or `responses` wiring
|
|
@@ -332,7 +326,7 @@ Using OpenAI, Anthropic or Google services through Code means you agree to **the
|
|
|
332
326
|
- If you configure other model providers, you're responsible for their terms.
|
|
333
327
|
|
|
334
328
|
### Privacy
|
|
335
|
-
- Your auth file lives at `~/.code/auth.json`
|
|
329
|
+
- Your auth file lives at `~/.code/auth.json`
|
|
336
330
|
- Inputs/outputs you send to AI providers are handled under their Terms and Privacy Policy; consult those documents (and any org-level data-sharing settings).
|
|
337
331
|
|
|
338
332
|
### Subject to change
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-every/code",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
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.4.
|
|
39
|
-
"@just-every/code-darwin-x64": "0.4.
|
|
40
|
-
"@just-every/code-linux-x64-musl": "0.4.
|
|
41
|
-
"@just-every/code-linux-arm64-musl": "0.4.
|
|
42
|
-
"@just-every/code-win32-x64": "0.4.
|
|
38
|
+
"@just-every/code-darwin-arm64": "0.4.4",
|
|
39
|
+
"@just-every/code-darwin-x64": "0.4.4",
|
|
40
|
+
"@just-every/code-linux-x64-musl": "0.4.4",
|
|
41
|
+
"@just-every/code-linux-arm64-musl": "0.4.4",
|
|
42
|
+
"@just-every/code-win32-x64": "0.4.4"
|
|
43
43
|
}
|
|
44
44
|
}
|