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 v0.2.29 Home All releases olderv0.2.27 v0.2.30newer
Claude Code v0.2.29

Enhanced .gitignore Support for LS Command

The ls command now respects .gitignore patterns when listing files and directories. This provides a cleaner view of your project by automatically filtering out ignored files.

New parameter: The ls command now accepts an optional ignore parameter where you can provide an array of glob patterns to exclude from the listing.

Example usage:

# List files while respecting .gitignore
claude ls /path/to/directory

# List files with custom ignore patterns
claude ls /path/to/directory --ignore "*.tmp" "*.log"

See this entry in the whole of v0.2.29 →