@just-every/code 0.2.148 → 0.2.150

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 +5 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -101,6 +101,9 @@ npm install -g @anthropic-ai/claude-code @google/gemini-cli && claude "Just chec
101
101
  # Change reasoning level
102
102
  /reasoning low|medium|high
103
103
 
104
+ # Switch models or effort presets
105
+ /model
106
+
104
107
  # Start new conversation
105
108
  /new
106
109
  ```
@@ -170,11 +173,10 @@ Code supports MCP for extended capabilities:
170
173
  - **API integrations**: Connect to external services
171
174
  - **Custom tools**: Build your own extensions
172
175
 
173
- Configure MCP in `~/.codex/config.toml`:
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):
174
177
 
175
178
  ```toml
176
- [[mcp_servers]]
177
- name = "filesystem"
179
+ [mcp_servers.filesystem]
178
180
  command = "npx"
179
181
  args = ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/project"]
180
182
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.2.148",
3
+ "version": "0.2.150",
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.148",
39
- "@just-every/code-darwin-x64": "0.2.148",
40
- "@just-every/code-linux-x64-musl": "0.2.148",
41
- "@just-every/code-linux-arm64-musl": "0.2.148",
42
- "@just-every/code-win32-x64": "0.2.148"
38
+ "@just-every/code-darwin-arm64": "0.2.150",
39
+ "@just-every/code-darwin-x64": "0.2.150",
40
+ "@just-every/code-linux-x64-musl": "0.2.150",
41
+ "@just-every/code-linux-arm64-musl": "0.2.150",
42
+ "@just-every/code-win32-x64": "0.2.150"
43
43
  }
44
44
  }