Switch to the Stable Update Channel with autoUpdatesChannel
Claude Code updates to the newest release automatically. If you prefer predictability over bleeding-edge features, set autoUpdatesChannel to "stable" in your user settings.
// ~/.claude/settings.json
{
"autoUpdatesChannel": "stable"
}
The stable channel follows a release that is typically about one week behind latest and skips versions with confirmed major regressions. You get the same features, just with a short delay that lets critical issues get caught and patched before they reach your machine.
The latest channel (the default) gives you each release as soon as it ships. This is fine for most developers on active projects. The stable channel is a better fit for:
- CI runners where a surprise regression would break pipelines
- Team machines managed by an admin
- Anyone who has been bitten by a regression before and wants a buffer
To switch channels and pull the current stable release immediately:
# After updating settings.json:
claude update
You can switch back to latest at any time by changing the value:
{
"autoUpdatesChannel": "latest"
}
On any machine where consistency matters more than freshness, stable is the safer default.
Log in to leave a comment.
When Claude writes error messages, button labels, validation text, or onboarding flows, it defaults to generic developer-speak. Add a "Users" section to your CLAUDE.md describing who your actual users are — their technical level, industry jargon, and what they care about — so Claude writes copy that makes sense to THEM, not to developers.
Use the --agent flag with custom markdown files in .claude/agents/ to launch purpose-built Claude sessions with restricted tools and scoped system prompts.
Every project has traps — the billing module that silently fails if you forget to queue the job, the legacy table with column names that don't match the model, the config value that must be set before tests run. Document these gotchas in your CLAUDE.md so Claude avoids the same mistakes your team spent days debugging.