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 v2.0.15 Home All releases olderv2.0.14 v2.0.17newer
Claude Code v2.0.15

Original Working Directory Protection

What: File scanning now automatically excludes the original working directory when the process has changed directories, preventing unintended file access.

Details:

  • Function H7B() at line 275861 checks if current directory differs from startup directory
  • If different, adds originalCwd to ignore paths list (lines 275873-276)
  • Prevents Claude Code from scanning the launch directory when operating in a different location
  • Evidence: v2.0.14 function s3B() at line 275176 had static ignore list; v2.0.15 adds dynamic originalCwd logic

See this entry in the whole of v2.0.15 →