New Features#
What's wrong with this entry?
Plan Mode
- New
/exit_plan_modecommand: 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
planModecolor 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
/modelcommand: 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_EXPORTERenvironment variable to enable log export - Support for multiple exporters:
otlp,console - Configure with
OTEL_LOG_USER_PROMPTS=trueto 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 configcommand now migrates settings tosettings.json allowedToolsandignorePatternsare 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"