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.96 Home All releases olderv0.2.94 v0.2.97newer
Claude Code v0.2.96

Rule-Based File Access Control

  • Granular Permission Rules: New pattern-based permission system for file operations
  • Support for glob patterns to allow/deny file access
  • Separate rules for read vs edit operations
  • Pattern prefixes:
  • // - Relative to root directory
  • ~/ - Relative to user's home directory
  • / - Relative to configured scope (project, user settings, etc.)
Example usage
# Deny all access to sensitive files
claude code --deny-read "//etc/**" --deny-edit "~/.ssh/**"

# Allow specific directories
claude code --allow-read "/src/**" --allow-edit "/docs/*.md"

See this entry in the whole of v0.2.96 →