Add simple model configuration command and new model notifications
Resolved 💬 5 comments Opened Feb 8, 2026 by nic-pandion Closed Mar 10, 2026
Preflight Checklist
- [x] I have searched existing requests and this feature hasn't been requested yet
- [x] This is a single feature request (not multiple features)
Problem Statement
## Problem
When Anthropic releases a new model (e.g., Opus 4.6), there's no obvious way to:
- Know the new model is available
- Switch to it as the default
Currently users must:
- Discover releases independently
- Manually create
%APPDATA%\Claude\settings.json(Windows) or~/.claude/settings.json - Know the undocumented
"model": "opus"setting
## Suggested improvements
claude configcommand - e.g.,claude config set model opus- New model notifications - "Opus 4.6 available. Run
/model opusto try it" - Interactive setup -
claude setupthat asks for preferred model - Document user settings file - Currently not in
--helpor docs
## Context
Discovered after assuming my project settings.local.json would handle model preferences - it doesn't. Required assistance to find the correct location and format.
Proposed Solution
claude configcommand - Allow setting defaults via CLI, e.g.:
claude config set model opusclaude config listto see current settings
- New model notifications - On startup, show something like:
"Opus 4.6 now available. Run /model opus to try it"
- Interactive setup - Add
claude setupthat walks through preferences including default model
- Document the user settings file - Add to
--helpoutput and docs:
- Windows:
%APPDATA%\Claude\settings.json - Mac/Linux:
~/.claude/settings.json - Available settings:
model, etc.
- Auto-upgrade option - Setting like
"model": "latest-opus"that always uses the newest Opus release
Alternative Solutions
_No response_
Priority
Medium - Would be very helpful
Feature Category
CLI commands and flags
Use Case Example
Anthropic released Opus 4.6 on Feb 5, 2026. As a paying Claude Code max user, I wanted to upgrade immediately but:
- Discovered
settings.local.jsonmodel preferences don't work - Spent 20+ minutes finding the actual user settings location
- Had to manually create
%APPDATA%\Claude\settings.json - Wrote
{"model": "opus"}based on trial and error
Expected: claude config set model opus or a prompt on startup saying "New model available"
Additional Context
_No response_
This issue has 5 comments on GitHub. Read the full discussion on GitHub ↗