@just-every/code 0.4.14 → 0.4.16

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 +3 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -161,7 +161,7 @@ qwen --version
161
161
  code [options] [prompt]
162
162
 
163
163
  Options:
164
- --model <name> Override the model (gpt-5, claude-opus, etc.)
164
+ --model <name> Override the model (gpt-5.1, claude-opus, etc.)
165
165
  --read-only Prevent file modifications
166
166
  --no-approval Skip approval prompts (use with caution)
167
167
  --config <key=val> Override config values
@@ -238,7 +238,7 @@ Main config file: `~/.code/config.toml`
238
238
 
239
239
  ```toml
240
240
  # Model settings
241
- model = "gpt-5"
241
+ model = "gpt-5.1"
242
242
  model_provider = "openai"
243
243
 
244
244
  # Behavior
@@ -252,7 +252,7 @@ name = "light-photon"
252
252
 
253
253
  # Add config for specific models
254
254
  [profiles.gpt-5]
255
- model = "gpt-5"
255
+ model = "gpt-5.1"
256
256
  model_provider = "openai"
257
257
  approval_policy = "never"
258
258
  model_reasoning_effort = "high"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.4.14",
3
+ "version": "0.4.16",
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.14",
39
- "@just-every/code-darwin-x64": "0.4.14",
40
- "@just-every/code-linux-x64-musl": "0.4.14",
41
- "@just-every/code-linux-arm64-musl": "0.4.14",
42
- "@just-every/code-win32-x64": "0.4.14"
38
+ "@just-every/code-darwin-arm64": "0.4.16",
39
+ "@just-every/code-darwin-x64": "0.4.16",
40
+ "@just-every/code-linux-x64-musl": "0.4.16",
41
+ "@just-every/code-linux-arm64-musl": "0.4.16",
42
+ "@just-every/code-win32-x64": "0.4.16"
43
43
  }
44
44
  }