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.94 Home All releases olderv1.0.93 v1.0.95newer
Claude Code v1.0.94

Advanced sed Command Security

What: Complete replacement of sed command validation with sophisticated parsing that blocks dangerous operations How to use:

# Safe sed commands work normally
claude "Use sed to replace text in file.txt"

# Dangerous operations are now blocked:
# - File writes (s///w, w command)
# - Command execution (s///e, e command)
# - Multiple expression exploits

Details:

  • Prevents sed commands from writing to files or executing shell commands
  • Parses actual sed expressions instead of using regex patterns
  • Detects and blocks write operations (w), execute operations (e), and dangerous flags
  • Evidence: P1B() at line 379595, mS6() at line 379676, hS6() at line 379611, gS6() at line 379638

See this entry in the whole of v1.0.94 →