Source Intelligence
Reading a new release v2.1.251 Analysing changes · 2/5 Sorting the findings · 1/4 steps 470 findings $18.91 so far

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.

All of v0.2.76 Home All releases olderv0.2.74 v0.2.77newer
Claude Code v0.2.76

Enhanced Configuration Management

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.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v0.2.76 →