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 v1.0.89 Home All releases olderv1.0.88 v1.0.90newer
Claude Code v1.0.89

Expanded Bash Command Permission Tracking

What: 18 additional bash commands now require appropriate file permissions How to use: Commands like cat, head, tail, diff, awk, and others now trigger permission checks:

# These commands now check read permissions for the specified paths
cat /etc/passwd
head -n 10 /var/log/system.log
diff file1.txt file2.txt

Details:

  • New commands include: cat, head, tail, sort, uniq, wc, cut, paste, column, tr, file, stat, diff, awk, strings, hexdump, base64, nl
  • All new commands require read permissions only
  • Provides clear descriptions when permission prompts appear
  • Enhances security by ensuring all file access is properly authorized

See this entry in the whole of v1.0.89 →