@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.
Files changed (2) hide show
  1. package/README.md +45 -8
  2. 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
- - 🌐 **Browser Integration** - CDP support, headless browsing, screenshots
17
- - 📝 **Diff Viewer** - Side-by-side diffs with syntax highlighting
18
- - 🤖 **Multi-Agent Commands** - /plan, /solve, /code with agent panels
19
- - 🎨 **Theme System** - /themes with live preview and accessibility
20
- - 🧠 **Reasoning Control** - /reasoning for dynamic effort adjustment
21
- - 🔌 **MCP support** – Extend with filesystem, DBs, APIs, or your own tools.
22
- - 🔒 **Safety modes** – Read-only, approvals, and workspace sandboxing.
23
- - 🔁 **Backwards compatible** – Reads both `~/.code/*` (primary) and legacy `~/.codex/*`; writes only to `~/.code/*`
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
  &ensp;
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.1",
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.1",
39
- "@just-every/code-darwin-x64": "0.4.1",
40
- "@just-every/code-linux-x64-musl": "0.4.1",
41
- "@just-every/code-linux-arm64-musl": "0.4.1",
42
- "@just-every/code-win32-x64": "0.4.1"
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
  }