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 v1.0.7 Home All releases olderv1.0.6 v1.0.8newer
Claude Code v1.0.7

New Features

Plan Mode

  • New /exit_plan_mode command: Exit planning mode and start coding immediately. When in plan mode, use this command to signal you're ready to begin implementation.
  # In an interactive session, after planning is complete:
  /exit_plan_mode
  • Added visual indicator with a new planMode color theme (teal) to distinguish when Claude is in planning mode

Model Selection Enhancements

  • Improved model recommendations: Claude now provides intelligent model suggestions based on your subscription tier
  • For Claude Pro users with >1x usage tier, Opus 4.0 is recommended when available
  • Automatically detects subscription level and suggests appropriate models
  • Enhanced /model command: Now shows subscription-aware recommendations
  # Shows available models with smart recommendations
  /model

Logging and Observability

  • OpenTelemetry Logs Support: Full integration with OpenTelemetry logging API
  • Set OTEL_LOGS_EXPORTER environment variable to enable log export
  • Support for multiple exporters: otlp, console
  • Configure with OTEL_LOG_USER_PROMPTS=true to include user prompts in logs (redacted by default)
  # Enable OTLP log export
  export OTEL_LOGS_EXPORTER=otlp
  
  # Include user prompts in logs (use with caution)
  export OTEL_LOG_USER_PROMPTS=true

Configuration Migration

  • Settings.json migration: The claude config command now migrates settings to settings.json
  • allowedTools and ignorePatterns are automatically migrated
  • Warning shown when using deprecated config commands
  # These commands now show migration warnings:
  claude config add allowedTools bash
  claude config add ignorePatterns "*.log"

See this entry in the whole of v1.0.7 →