@just-every/code 0.4.1 → 0.4.2
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 +45 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -10,17 +10,45 @@
|
|
|
10
10
|
|
|
11
11
|
**Code** is a fast, local coding agent for your terminal. It's a community-driven fork of `openai/codex` focused on real developer ergonomics: Browser integration, multi-agents, theming, and reasoning control — all while staying compatible with upstream.
|
|
12
12
|
|
|
13
|
+
 
|
|
14
|
+
## What's new in v0.4.0 (October 26, 2025)
|
|
15
|
+
|
|
16
|
+
- **Auto Drive runs the whole play** – hand `/auto` a task and it now plans, coordinates agents, reruns checks, and recovers from hiccups without babysitting.
|
|
17
|
+
- **Unified settings overlay** – `/settings` centralizes limits, model routing, themes, and CLI integrations so you can audit configuration in one place.
|
|
18
|
+
- **Card-based activity stream** – Agents, browser sessions, web search, and Auto Drive render as compact cards with drill-down overlays for full logs.
|
|
19
|
+
- **Turbocharged performance** – History rendering and streaming were optimized to stay smooth even during long multi-agent sessions.
|
|
20
|
+
- **Smarter agent routing** – Mix and match orchestrator CLIs (Claude, Gemini, GPT-5, Qwen, and more) per `/plan`, `/code`, or `/solve` run.
|
|
21
|
+
|
|
22
|
+
Read the full notes in `release-notes/RELEASE_NOTES.md`.
|
|
23
|
+
|
|
13
24
|
 
|
|
14
25
|
## Why Code
|
|
15
26
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
27
|
+
- 🚀 **Auto Drive orchestration** – Multi-agent automation that now self-heals and ships complete tasks.
|
|
28
|
+
- 🌐 **Browser Integration** – CDP support, headless browsing, screenshots captured inline.
|
|
29
|
+
- 🤖 **Multi-agent commands** – `/plan`, `/code` and `/solve` coordinate multiple CLI agents.
|
|
30
|
+
- 🧭 **Unified settings hub** – `/settings` overlay for limits, theming, approvals, and provider wiring.
|
|
31
|
+
- 🎨 **Theme system** – Switch between accessible presets, customize accents, and preview live via `/themes`.
|
|
32
|
+
- 🔌 **MCP support** – Extend with filesystem, DBs, APIs, or your own tools.
|
|
33
|
+
- 🔒 **Safety modes** – Read-only, approvals, and workspace sandboxing.
|
|
34
|
+
|
|
35
|
+
<p align="center">
|
|
36
|
+
<strong>Introducing Auto Drive</strong>
|
|
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>
|
|
43
|
+
|
|
44
|
+
<p align="center">
|
|
45
|
+
<strong>Multi-Agent Support</strong>
|
|
46
|
+
<video width="100%" controls playsinline>
|
|
47
|
+
<source src="https://upload.justevery.com/v0-3.webm" type="video/webm">
|
|
48
|
+
<source src="https://upload.justevery.com/v0-3.mp4" type="video/mp4">
|
|
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>
|
|
51
|
+
</p>
|
|
24
52
|
|
|
25
53
|
 
|
|
26
54
|
| <img src="docs/screenshots/simple.png" alt="Simple interface" width="100%"><br>Simple interface | <img src="docs/screenshots/diff.png" alt="Unified diff viewer" width="100%"><br>Unified diffs |
|
|
@@ -109,6 +137,15 @@ qwen --version
|
|
|
109
137
|
/code "Show dark mode when I feel cranky"
|
|
110
138
|
```
|
|
111
139
|
|
|
140
|
+
### Auto Drive
|
|
141
|
+
```bash
|
|
142
|
+
# Hand off a multi-step task; Auto Drive will coordinate agents and approvals
|
|
143
|
+
/auto "Refactor the auth flow and add device login"
|
|
144
|
+
|
|
145
|
+
# Resume or inspect an active Auto Drive run
|
|
146
|
+
/auto status
|
|
147
|
+
```
|
|
148
|
+
|
|
112
149
|
### General
|
|
113
150
|
```bash
|
|
114
151
|
# Try a new theme!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-every/code",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
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.2",
|
|
39
|
+
"@just-every/code-darwin-x64": "0.4.2",
|
|
40
|
+
"@just-every/code-linux-x64-musl": "0.4.2",
|
|
41
|
+
"@just-every/code-linux-arm64-musl": "0.4.2",
|
|
42
|
+
"@just-every/code-win32-x64": "0.4.2"
|
|
43
43
|
}
|
|
44
44
|
}
|