Source Intelligence

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 releases Home olderv0.2.74 v0.2.77newer

Claude Code v0.2.76

10 entries read diff v0.2.74 → v0.2.76 Markdown
Find
Pick an entry · j / k steps through
7 entries

Changesopen

#

# Claude Code v0.2.76 Changelog

Related

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

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.

MCP Server Integration#

New Model Context Protocol (MCP) support has been added:

  • claude mcp serve - Start the Claude Code MCP server for enhanced integrations
  claude mcp serve

Related

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

Theme Configuration Support#

The configuration system now explicitly supports theme customization, with dark theme available as a configuration option.

Related

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

Array Configuration Management#

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.

Related

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

Code Structure Updates#

  • Removed 86 functions and added 477 new functions, indicating significant internal refactoring
  • Overall structural similarity of 92.9% maintained with the previous version
  • Enhanced modularization with 6,705 total declarations (up from 6,314)

Related

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

Removed Dependencies#

Several file system and process-related imports have been consolidated or removed, suggesting improved code organization and reduced redundancy.

Related

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

1 entry

Notesopen

#

  • The configuration system maintains separate project-level and global settings
  • Project configurations take precedence over global configurations when both exist
  • The new array configuration support enables more complex configuration scenarios
  • MCP server integration opens possibilities for extended tool capabilities and integrations
Verbatim
No official entry

Not individually listed upstream

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.

System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.