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.246 Home All releases olderv2.1.245 v2.1.247newer
Claude Code v2.1.246

PR-review ships two skill versions and picks one at invoke time

Under the hood
Useful2 Signal3
Skills

Two versions of the PR-review skill ship together and one is chosen when you invoke it.

What

Claude Code carries both PR-review skills: the older one that has the model fill in an HTML template and publish the page itself, and the newer one that has it author a single payload and publish it through the Artifact tool. Both survive as separate embedded files, and a runtime check picks which description and body to use.

Details
  • The choice is reported to telemetry as a lane of either composed or legacy.
  • The check that selects the lane resolves through a helper whose inputs are not visible in the bundle, so which lane a given user gets is not determined by anything in this build.
Evidence

te("pr_review_started", { lane: r ? cn("composed") : cn("legacy") });

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