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.30 v0.2.32newer

Claude Code v0.2.31

3 entries read diff v0.2.30 → v0.2.31 Markdown
Find
Pick an entry · j / k steps through
3 entries

Changesopen

New Features#

Custom Slash Commands

Users can now create custom slash commands by placing Markdown files in .claude/commands/ directories. These files will automatically appear as slash commands that insert prompts into your conversation.

Usage Example:

# Create a custom command file
mkdir -p .claude/commands/
echo "# My Custom Prompt\nThis is my custom prompt content" > .claude/commands/my-command.md

# In Claude Code, use the command
/my-command
# This will insert the contents of my-command.md into your conversation

This feature allows you to create reusable prompts and workflows specific to your project or personal preferences.

MCP Debug Mode

A new --mcp-debug flag provides detailed error information when MCP (Model Context Protocol) servers encounter issues.

Usage Example:

# Run Claude Code with MCP debugging enabled
claude --mcp-debug

# When MCP server errors occur, you'll see detailed error messages like:
# MCP server "server-name" Error details here

This helps troubleshoot MCP server configuration and connectivity issues.

Internal Improvements#

  • Enhanced Error Logging: MCP server errors are now logged with better formatting and optionally displayed to console when debug mode is enabled
  • Version Update: Updated to version 0.2.31
  • Sentry Environment: Error tracking now includes environment tag set to "external"

Technical Changes#

  • Improved error handling in the MCP tool execution flow with better error reporting
  • Reorganized import statements for Node.js process and stream modules
  • Added user/project scope variables for command organization

Related

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

Verbatim
Official · Anthropic

Anthropic’s official release notes

Published verbatim by Anthropic for v0.2.31. Text is unmodified from the upstream changelog. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

  • Custom slash commands: Markdown files in .claude/commands/ directories now appear as custom slash commands to insert prompts into your conversation
  • MCP debug mode: Run with --mcp-debug flag to get more information about MCP server errors
System prompt

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