Follow Discord
Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.275 ·

Path checks for local-dir/owner-repo args now detect network-location symlinks

Directory and repo path arguments are now checked for symlinks that sneak in a network location

TierYou'll noticehow much it should matter to you
Useful2my rating, 1 to 5
Signal2worth watching, 1 to 5
AreaPermissionswhat it touches
KindImprovementsin v2.1.275,
You'll notice

Directory and repo path arguments are now checked for symlinks that sneak in a network location

What

When Claude Code is given a path as a local-directory or owner/repo argument and needs to check it (via stat), it now does more validation first:

  • It outright rejects Windows device-namespace paths (those starting with \\?\ or \\.\), since these can't be safely checked for symlinks
  • For other paths, it walks the chain of symlinks (the ancestry of links) to see if the path passes through a symlink pointing to a network location, or to a link target that can't be read

If either case is found, it refuses the path with a specific error instead of proceeding.

Why

A symlink pointing to a network location could let a path argument silently redirect Claude Code to read from or interact with a remote location instead of the local one you intended. Rejecting these cases up front avoids that kind of surprise redirection.

See this entry in the whole of v2.1.275 →

Feedback