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.248 Home All releases olderv2.1.247 v2.1.250newer
Claude Code v2.1.248

Hook output parsing tells you what was wrong with it

You'll notice
Useful4 Signal2
Hooks

Unparseable hook output now shows the failure kind, exit code and stderr.

What

When a hook prints something Claude Code cannot read as JSON, the message now says which failure it was and includes the hook's exit code and stderr.

Details
  • Parsing distinguishes plain text, valid JSON, several JSON documents run together, and output that looks like JSON but is not.
  • The last case advises using a real encoder: "Emit the payload with a JSON encoder (jq, ConvertTo-Json, json.dumps) rather than string concatenation so backslashes and quotes inside strings are escaped."
Evidence

Emit the payload with a JSON encoder (jq, ConvertTo-Json, json.dumps) rather than string concatenation so backslashes and quotes inside strings are escaped.

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v2.1.248 →