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

Groundwork for running /autofix-pr without the interactive UI

Not switched on
Useful2 Signal4
Slash Commands

A non-interactive version of /autofix-pr exists in the build but nothing calls it yet.

A text-only result path for /autofix-pr is fully written but unreachable; the command stays interactive-only.

/autofix-pr
What

/autofix-pr, which watches your current pull request and fixes problems it finds, gains a second code path that returns a plain text result instead of drawing a UI. Nothing in this build calls it, so the command still behaves exactly as before: interactive only, and only when remote sessions are enabled for your account.

Details
  • The new path trims the arguments you pass, runs the same autofix work, and returns text for success and failure, or the fixed string Autofix PR cancelled when the run is stopped.
  • That text-result shape is what commands usable from print mode return elsewhere in the bundle, which is what suggests a future non-interactive /autofix-pr.
  • The command's own description is unchanged and it is still declared as a UI command, without the flag that around 30 other commands set to mark themselves usable outside the interactive session.
  • The interactive flow is untouched, including its Spawning cloud autofix session… and Turning on autofix… steps.
  • Availability of /autofix-pr itself is unchanged: it needs the remote-sessions capability on your account plus an enterprise or API-key condition.
Evidence

return { type: "text", value: "Autofix PR cancelled" };

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