@just-every/code 0.6.100 → 0.6.101

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 +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -19,8 +19,8 @@
19
19
  - Stress tests now cover heavy agent churn plus concurrent Auto Review + Esc/typing responsiveness.
20
20
 
21
21
  - **New/updated models and agents**
22
- - Auto Drive CLI model support includes `gpt-5.3-codex` (planning/problem-solving) and `gpt-5.3-codex-spark` (fast coding/fix loops), with `medium | high | xhigh` reasoning controls.
23
- - Frontline and alias-aware agent model handling now includes `code-gpt-5.3-codex` and `code-gpt-5.3-codex-spark`, with compatibility alias upgrades for `gpt-5.1-codex`, `gpt-5.1-codex-mini`, `gpt-5.2-codex`, etc.
22
+ - Auto Drive CLI model support defaults to `gpt-5.5` (planning/problem-solving) and `gpt-5.4-mini` (fast coding/fix loops), with `medium | high | xhigh` reasoning controls.
23
+ - Frontline and alias-aware agent model handling now includes `code-gpt-5.5`, `code-gpt-5.4`, `claude-opus-4.8`, and `claude-sonnet-4.6`, with compatibility aliases for older model names where supported.
24
24
  - Auto Drive decision schema and coordinator payloads now enforce bounded history while preserving goal and recent context.
25
25
 
26
26
  See commit `60727b068` and related Auto Drive hardening commits in git history for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/code",
3
- "version": "0.6.100",
3
+ "version": "0.6.101",
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.100",
39
- "@just-every/code-darwin-x64": "0.6.100",
40
- "@just-every/code-linux-x64-musl": "0.6.100",
41
- "@just-every/code-linux-arm64-musl": "0.6.100",
42
- "@just-every/code-win32-x64": "0.6.100"
38
+ "@just-every/code-darwin-arm64": "0.6.101",
39
+ "@just-every/code-darwin-x64": "0.6.101",
40
+ "@just-every/code-linux-x64-musl": "0.6.101",
41
+ "@just-every/code-linux-arm64-musl": "0.6.101",
42
+ "@just-every/code-win32-x64": "0.6.101"
43
43
  }
44
44
  }