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.196 Home All releases olderv2.1.195 v2.1.197newer
Claude Code v2.1.196

Git Destructive Command Target Analysis

When Claude analyzes destructive git commands for permission prompts, it now identifies the specific target to provide more contextually accurate warnings:

  • git push --force: identifies remote, refspec, and whether the target looks like a main-like branch.
  • git reset --hard: classifies the target as bare (no target), HEAD-relative, remote ref, or other.
  • git branch -D: detects whether the branch being deleted is a main-like protected branch.
  • git commit --amend: distinguishes --no-edit, --message/-m, or interactive (opens editor).
Evidence

New git target parsers (search for "git-destructive-target parse failed")

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.196 →