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.1.238 Home All releases olderv2.1.237 v2.1.239newer
Claude Code v2.1.238

Directory tracking for backgrounded commands no longer breaks early

You'll notice
Useful3 Signal2
Bash Tool

Directory tracking keeps working for backgrounded Bash commands instead of breaking partway through.

What

The temporary helper file Claude Code uses to notice when a Bash command changes directory is no longer deleted while the command is still running. Cleanup now waits for the process to exit if it is still alive, which matters for backgrounded commands where the settle callback can fire long before the process finishes.

Details
  • Cleanup is deferred to the child process's exit event when it still has a pid and has neither exited nor been signalled; otherwise it is awaited inline as before.
Evidence

tengu_shell_set_cwd

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

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.1.238 →