Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
The claude config command has been significantly improved with a full suite of subcommands for managing both project-level and global configurations:
claude config get <key> - Retrieve a specific configuration value # Get a project-level config value
claude config get apiKey
# Get a global config value
claude config get -g theme
claude config set <key> <value> - Set a configuration value # Set project-level configuration
claude config set apiKey "sk-ant-..."
# Set global theme configuration
claude config set -g theme dark
claude config list (alias: ls) - Display all configuration values # List project configurations
claude config list
# List global configurations
claude config list -g
claude config add <key> <values...> - Add items to array-type configurations # Add multiple values to an array config
claude config add allowedDomains example.com api.example.com
# Add to global array config
claude config add -g trustedSources github.com gitlab.com
claude config remove <key> [values...] (alias: rm) - Remove configuration values or specific items from arrays # Remove an entire config key
claude config remove apiKey
# Remove specific values from an array
claude config remove allowedDomains example.com
# Remove from global config
claude config remove -g theme
All configuration commands support the -g, --global flag to operate on global settings instead of project-specific ones.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
New Model Context Protocol (MCP) support has been added:
claude mcp serve - Start the Claude Code MCP server for enhanced integrations claude mcp serve
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
The configuration system now explicitly supports theme customization, with dark theme available as a configuration option.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Configuration values can now be arrays, with dedicated add and remove commands for managing list-based settings. This enables more flexible configuration of features like allowed domains, trusted sources, or custom command lists.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Several file system and process-related imports have been consolidated or removed, suggesting improved code organization and reduced redundancy.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
v0.2.76 does not have its own entry in Anthropic’s official changelog, because prerelease builds are often folded into a neighbouring release. Browse the full changelog for the closest official notes. Everything else on this page came out of the bundle instead, which is why the two lists don't match.
The system prompt was not captured for this release, so this page cannot say whether it moved.