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.186 Home All releases olderv2.1.185 v2.1.187newer
Claude Code v2.1.186

Plugin Command Output Improved

Plugin error and guidance messages now use a helper that generates syntactically valid claude ... commands with proper argument quoting — avoiding cases where a plugin name containing special characters would produce a broken command string.

Details
  • claude plugin install <source> --scope project is now generated via a validation function that checks the source name against a safe character pattern before emitting the command.
  • If the name is not safely quotable, the message falls back to plain English instructions without a literal command.
  • Same improvement applies to claude plugin disable <name> --scope local in project-scope conflict messages.
Evidence

Helper function Yg for safe command generation (search for "claude ${e} ${t}${n")

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