@just-every/code 0.6.37 → 0.6.39

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 +4 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -163,7 +163,7 @@ qwen --version
163
163
  code [options] [prompt]
164
164
 
165
165
  Options:
166
- --model <name> Override the model (gpt-5.1, claude-opus, etc.)
166
+ --model <name> Override the model for the active provider (e.g. gpt-5.1)
167
167
  --read-only Prevent file modifications
168
168
  --no-approval Skip approval prompts (use with caution)
169
169
  --config <key=val> Override config values
@@ -174,6 +174,8 @@ Options:
174
174
  --version Show version number
175
175
  ```
176
176
 
177
+ Note: `--model` only changes the model name sent to the active provider. To use a different provider, set `model_provider` in `config.toml`. Providers must expose an OpenAI-compatible API (Chat Completions or Responses).
178
+
177
179
  &ensp;
178
180
  ## Memory & project docs
179
181
 
@@ -265,7 +267,7 @@ model_reasoning_summary = "detailed"
265
267
 
266
268
  - `CODE_HOME`: Override config directory location
267
269
  - `OPENAI_API_KEY`: Use API key instead of ChatGPT auth
268
- - `OPENAI_BASE_URL`: Use alternative API endpoints
270
+ - `OPENAI_BASE_URL`: Use OpenAI-compatible API endpoints (chat or responses)
269
271
  - `OPENAI_WIRE_API`: Force the built-in OpenAI provider to use `chat` or `responses` wiring
270
272
 
271
273
  &ensp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.6.37",
3
+ "version": "0.6.39",
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.6.37",
39
- "@just-every/code-darwin-x64": "0.6.37",
40
- "@just-every/code-linux-x64-musl": "0.6.37",
41
- "@just-every/code-linux-arm64-musl": "0.6.37",
42
- "@just-every/code-win32-x64": "0.6.37"
38
+ "@just-every/code-darwin-arm64": "0.6.39",
39
+ "@just-every/code-darwin-x64": "0.6.39",
40
+ "@just-every/code-linux-x64-musl": "0.6.39",
41
+ "@just-every/code-linux-arm64-musl": "0.6.39",
42
+ "@just-every/code-win32-x64": "0.6.39"
43
43
  }
44
44
  }