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.46 v0.2.48newer

Claude Code v0.2.47

10 entries read diff v0.2.46 → v0.2.47 Markdown
Find
Pick an entry · j / k steps through
8 entries

Changesopen

#

# Claude Code v0.2.47 Changelog

Related

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

Tab Completion for Files and Folders#

  • Press Tab to auto-complete file and folder names while typing paths
  • Works in interactive mode when entering file paths
  • Speeds up navigation and reduces typing errors

Auto-Accept Mode for File Edits#

  • Press Shift+Tab to toggle auto-accept mode for file edits
  • When enabled, file edits are automatically accepted without confirmation prompts
  • Visual indicator shows when auto-accept is active: ⏵⏵ auto-accept edits on
  • Particularly useful for workflows with many trusted file modifications

️ Automatic Conversation Compaction#

  • Conversations can now continue indefinitely without hitting token limits
  • Claude automatically compacts older messages when approaching token thresholds
  • Toggle this feature on/off using the /config command
  • Preserves conversation context while managing token usage efficiently

Improved Thinking Mode Control#

  • New environment variable MAX_THINKING_TOKENS allows precise control over thinking token allocation
  • Set a specific number of thinking tokens instead of relying on keyword detection
  • Example: export MAX_THINKING_TOKENS=8000

Better Error Privacy#

  • Enhanced redaction of sensitive information in error messages and stack traces
  • Automatically redacts:
  • Anthropic API keys (sk-ant-*)
  • AWS keys (AKIA* patterns)
  • GCP keys (AIza* patterns)
  • GCP service accounts (@.iam.gserviceaccount.com)
  • Generic API keys in various formats

Improved Bug Report Titles#

  • Bug report title generation now creates more technical, descriptive titles
  • Better extraction of key error messages for clearer issue tracking
  • Fallback to simple title extraction if AI generation fails

Enhanced Permission Prompts#

  • Permission prompts now show numbered options (1, 2, 3) for easier selection
  • Type the number to quickly select an option
  • Escape key consistently selects "No" across all prompts
  • More consistent formatting and better visual hierarchy
4 entries

Technical Improvementsopen

#

  • Stream imports updated from default imports to named imports for better compatibility
  • Process imports now use node:process prefix for clarity
  • Removed unused imports and variables for cleaner codebase
  • Added fallback behavior for bug report title generation

Related

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

Using Tab Completion#

# Start typing a path and press Tab
$ claude read /home/user/proj[TAB]
# Completes to: /home/user/projects/

$ claude edit ./src/comp[TAB]
# Shows available completions or completes if unique

Toggling Auto-Accept Mode#

# During a conversation, press Shift+Tab
# You'll see: ⏵⏵ auto-accept edits on (shift+tab to toggle)

# All subsequent file edits will be automatically accepted
# Press Shift+Tab again to disable

Setting Maximum Thinking Tokens#

# Set a specific thinking token limit
$ export MAX_THINKING_TOKENS=15000
$ claude

# Now all thinking operations will use exactly 15000 tokens

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.47. 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.

  • Press Tab to auto-complete file and folder names
  • Press Shift + Tab to toggle auto-accept for file edits
  • Automatic conversation compaction for infinite conversation length (toggle with /config)
System prompt

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