You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default to opus-4-5, add cc7/ccw7/cc-orc7 for opus-4-7
Flip ANTHROPIC_MODEL and ANTHROPIC_DEFAULT_OPUS_MODEL in default
settings.json from claude-opus-4-7 to claude-opus-4-5. Remove the
global CLAUDE_CODE_MAX_CONTEXT_TOKENS and CLAUDE_CODE_AUTO_COMPACT_WINDOW
env vars (they pinned 250k globally, which would exceed 4.5's 200k
API ceiling). Move context-window control inline per alias:
- cc / claude / ccw / cc-orc: 200k (opus-4-5)
- cc7 / ccw7 / cc-orc7: 400k (opus-4-7) — new variants
Thinking-related env vars (MAX_THINKING_TOKENS, adaptive-thinking flag,
effort level) remain global. ccraw is unchanged.
Also adds legacy-cleanup sed entries for cc7/ccw7/cc-orc7 so future
renames stay idempotent, updates the Commands table in AGENTS.md, and
documents the change in CHANGELOG.md.
Copy file name to clipboardExpand all lines: container/.devcontainer/CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@
4
4
5
5
### Configuration
6
6
7
+
-**Default model changed to `claude-opus-4-5`** — `ANTHROPIC_MODEL` and `ANTHROPIC_DEFAULT_OPUS_MODEL` in default settings flipped from `claude-opus-4-7` to `claude-opus-4-5`. Subagents also run on 4.5 by default.
8
+
-**Per-alias context windows** — `CLAUDE_CODE_MAX_CONTEXT_TOKENS` and `CLAUDE_CODE_AUTO_COMPACT_WINDOW` removed from global `settings.json env` (they pinned 250k globally, which would exceed 4.5's 200k ceiling). Context is now set inline per alias: `cc` / `claude` / `ccw` / `cc-orc` = 200k; `cc7` / `ccw7` / `cc-orc7` = 400k.
9
+
-**New 4.7 alias variants** — `cc7`, `ccw7`, `cc-orc7` run Claude Code on `claude-opus-4-7` with a 400k context window (main / writing / orchestrator system prompts respectively). Use these for sessions that need 4.7's larger window; use `cc` / `ccw` / `cc-orc` (now on 4.5) for standard work.
7
10
-**Thinking display set to summarized** — `cc`, `claude`, `ccw`, and `cc-orc` aliases now pass `--thinking-display summarized`, keeping the terminal tidy while still surfacing thinking. `ccraw` is unaffected (stays vanilla).
8
11
-**View mode set to focus** — `viewMode` changed from `verbose` to `focus` in default settings for a cleaner terminal UI.
0 commit comments