@just-every/code 0.4.3 → 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 +16 -11
- 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,18 +32,23 @@ 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
|
+
## AI Videos
|
|
37
|
+
|
|
38
|
+
 
|
|
35
39
|
<p align="center">
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
</
|
|
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>
|
|
40
44
|
</p>
|
|
41
45
|
|
|
46
|
+
 
|
|
42
47
|
<p align="center">
|
|
43
|
-
<
|
|
44
|
-
<a href="https://youtu.be/1_X8O8W2X0M">
|
|
48
|
+
<a href="https://youtu.be/sV317OhiysQ">
|
|
45
49
|
<img src="docs/screenshots/video-v03-play.jpg" alt="Play Multi-Agent Support video" width="100%">
|
|
46
|
-
</a>
|
|
50
|
+
</a><br>
|
|
51
|
+
<strong>Multi-Agent Promo</strong>
|
|
47
52
|
</p>
|
|
48
53
|
|
|
49
54
|
|
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
|
}
|