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 of v0.2.115 Home All releases olderv0.2.114 v0.2.116newer
Claude Code v0.2.115

New Features

Automatic Git Command Optimization

Git commands executed through Claude Code now run significantly faster with automatic performance optimizations:

  • Disables interactive prompts that could hang the process
  • Removes file locking overhead for better performance
  • Disables automatic maintenance and file system monitoring
  • Clears credential helpers to prevent authentication delays

Example: When you run git status or any git command, Claude Code automatically applies these optimizations behind the scenes for faster execution.

Custom Notification Commands

You can now configure custom commands to run when Claude Code sends notifications:

  • Set customNotifyCommand in your configuration to execute any script or command
  • Receives notification title and message as parameters
  • Perfect for integrating with system notification tools, logging systems, or custom workflows

Example configuration:

{
  "customNotifyCommand": "/path/to/your/notification-script.sh"
}

See this entry in the whole of v0.2.115 →