Source Intelligence
Reading a new release v2.1.251 Analysing changes · 2/5 Deeper second pass · 4/5 agents 427 findings $12.75 so far

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.63 Home All releases olderv2.0.62 v2.0.64newer
Claude Code v2.0.63

Slow Operation Detection

What: New performance monitoring that detects and logs slow filesystem and shell command operations.

How it works:

  • All synchronous filesystem operations (20 in total) are now wrapped with timing instrumentation
  • Shell command executions via execSyncWithDefaults are similarly monitored
  • Operations exceeding 5ms are logged to debug output with the operation name and duration

Details:

  • Log format: [SLOW OPERATION DETECTED] fs.readFileSync (12.3ms) or [SLOW OPERATION DETECTED] execSyncWithDefaults (156.7ms): git status...
  • Monitored fs operations include: existsSync, statSync, readFileSync, writeFileSync, appendFileSync, copyFileSync, unlinkSync, renameSync, readdirSync, mkdirSync, rmdirSync, rmSync, and others
  • For shell commands, the first 100 characters of the command are included in the log
  • Logs are written to debug output (controlled by CLAUDE_CODE_DEBUG_LOGS_DIR environment variable)
  • Evidence: XX() wrapper function at line 554, threshold Zl2 = 5 at line 605, shell monitoring in MG() at line 16934

Related

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

See this entry in the whole of v2.0.63 →