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.37 Home All releases olderv0.2.36 v0.2.38newer
Claude Code v0.2.37

New Features

/release-notes Command

A new slash command that displays release notes for all versions of Claude Code.

Usage:

/release-notes

This command shows the complete release history with version numbers and their corresponding changes. The release notes are now always available and enabled by default (isEnabled: !0), replacing the previous version-specific implementation.

Enhanced config add/remove Commands

The claude config add and claude config remove commands now support adding or removing multiple values at once.

New capabilities:

  • Add multiple values to array-based configuration options in a single command
  • Values can be separated by commas or spaces
  • The command now tracks the count of items being added/removed
  • Items are automatically deduplicated using Set operations
  • Lists are sorted alphabetically after modifications

Examples:

# Add multiple tools to allowed tools
claude config add allowedTools Read,Write,Edit

# Remove multiple patterns from ignore patterns  
claude config remove ignorePatterns "*.log" "*.tmp" "build/"

# Works with both global and project configs
claude config add --global mcpServers server1,server2,server3

See this entry in the whole of v0.2.37 →