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.251 Home All releases olderv2.1.250
Claude Code v2.1.251

Glob's ignore and hidden-file behaviour is env-controlled

Use it now
Useful3 Signal2
Search Notable not in their notes

Two env vars control whether Glob searches ignored files and dotfiles.

CLAUDE_CODE_GLOB_NO_IGNORECLAUDE_CODE_GLOB_HIDDEN
What

Glob searches ignored files and dotfiles by default. Both are switchable through CLAUDE_CODE_GLOB_NO_IGNORE and CLAUDE_CODE_GLOB_HIDDEN, each defaulting to true. This pairing existed before this release; what is visible now is that the two variables map straight onto the underlying search's ignore and hidden flags.

Usage
CLAUDE_CODE_GLOB_NO_IGNORE=false claude
Evidence

process.env.CLAUDE_CODE_GLOB_NO_IGNORE || "true"

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

See this entry in the whole of v2.1.251 →