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.222 Home All releases olderv2.1.221 v2.1.223newer

Marketplace schema loosened for features and doc fallbacks

Under the hood
Useful2 Signal0
Elsewhere

Marketplace entries with odd values in two fields now pass parsing instead of being silently discarded.

What

Two marketplace entry fields no longer validate their shape, so malformed values now pass parsing instead of being coerced away.

Details
  • features moved from a typed record with .catch(void 0) to w.unknown().optional().
  • project_doc_fallback_filenames moved from a string array with .catch(void 0) to w.unknown().optional().
  • Consumers no longer get a guaranteed shape from the parser for either field.
Evidence

project_doc_fallback_filenames: w.unknown().optional()

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