@just-every/code 0.2.153 → 0.2.155

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 +9 -6
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
  - 🧠 **Reasoning Control** - /reasoning for dynamic effort adjustment
21
21
  - 🔌 **MCP support** – Extend with filesystem, DBs, APIs, or your own tools.
22
22
  - 🔒 **Safety modes** – Read-only, approvals, and workspace sandboxing.
23
- - 🔁 **Backwards compatible** – Supports `~/.codex/*` or default `~/.coder/*`
23
+ - 🔁 **Backwards compatible** – Reads both `~/.code/*` (primary) and legacy `~/.codex/*`; writes only to `~/.code/*`
24
24
 
25
25
   
26
26
  | <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 |
@@ -51,7 +51,7 @@ Note: If another tool already provides a `code` command (e.g. VS Code), our CLI
51
51
  **Authenticate** (one of the following):
52
52
  - **Sign in with ChatGPT** (Plus/Pro/Team; uses models available to your plan)
53
53
  - Run `code` and pick "Sign in with ChatGPT"
54
- - Stores creds locally at `~/.coder/auth.json` (also reads legacy `~/.codex/auth.json`)
54
+ - Stores creds locally at `~/.code/auth.json` (still reads legacy `~/.codex/auth.json` if present)
55
55
  - **API key** (usage-based)
56
56
  - Set `export OPENAI_API_KEY=xyz` and run `code`
57
57
 
@@ -173,7 +173,7 @@ Code supports MCP for extended capabilities:
173
173
  - **API integrations**: Connect to external services
174
174
  - **Custom tools**: Build your own extensions
175
175
 
176
- Configure MCP in `~/.codex/config.toml`. Define each server under a named table like `[mcp_servers.<name>]` (this maps to the JSON `mcpServers` object used by other clients):
176
+ Configure MCP in `~/.code/config.toml` (legacy `~/.codex/config.toml` is still read if present). Define each server under a named table like `[mcp_servers.<name>]` (this maps to the JSON `mcpServers` object used by other clients):
177
177
 
178
178
  ```toml
179
179
  [mcp_servers.filesystem]
@@ -184,7 +184,10 @@ args = ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/project"]
184
184
  &ensp;
185
185
  ## Configuration
186
186
 
187
- Main config file: `~/.codex/config.toml`
187
+ Main config file: `~/.code/config.toml`
188
+
189
+ > [!NOTE]
190
+ > Code reads from both `~/.code/` and `~/.codex/` for backwards compatibility, but it only writes updates to `~/.code/`. If you switch back to Codex and it fails to start, remove `~/.codex/config.toml`. If Code appears to miss settings after upgrading, copy your legacy `~/.codex/config.toml` into `~/.code/`.
188
191
 
189
192
  ```toml
190
193
  # Model settings
@@ -222,7 +225,7 @@ model_reasoning_summary = "detailed"
222
225
  > This fork adds browser integration, multi-agent commands (`/plan`, `/solve`, `/code`), theme system, and enhanced reasoning controls while maintaining full compatibility.
223
226
 
224
227
  **Can I use my existing Codex configuration?**
225
- > Yes! This fork is fully backward compatible with existing `~/.codex/` configurations.
228
+ > Yes. Code reads from both `~/.code/` (primary) and legacy `~/.codex/` directories. We only write to `~/.code/`, so Codex will keep running if you switch back; copy or remove legacy files if you notice conflicts.
226
229
 
227
230
  **Does this work with ChatGPT Plus?**
228
231
  > Absolutely. Use the same "Sign in with ChatGPT" flow as the original.
@@ -275,7 +278,7 @@ Using OpenAI, Anthropic or Google services through Code means you agree to **the
275
278
  - If you configure other model providers, you're responsible for their terms.
276
279
 
277
280
  ### Privacy
278
- - Your auth file lives at `~/.codex/auth.json`.
281
+ - Your auth file lives at `~/.code/auth.json` (legacy `~/.codex/auth.json` is still read).
279
282
  - 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).
280
283
 
281
284
  ### Subject to change
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.2.153",
3
+ "version": "0.2.155",
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.2.153",
39
- "@just-every/code-darwin-x64": "0.2.153",
40
- "@just-every/code-linux-x64-musl": "0.2.153",
41
- "@just-every/code-linux-arm64-musl": "0.2.153",
42
- "@just-every/code-win32-x64": "0.2.153"
38
+ "@just-every/code-darwin-arm64": "0.2.155",
39
+ "@just-every/code-darwin-x64": "0.2.155",
40
+ "@just-every/code-linux-x64-musl": "0.2.155",
41
+ "@just-every/code-linux-arm64-musl": "0.2.155",
42
+ "@just-every/code-win32-x64": "0.2.155"
43
43
  }
44
44
  }