Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.274 ·

Remote fetch checks now also recognize 404 as a non-fatal status

Claude Code's remote-fetch and artifact-fetch checks now treat HTTP 404 like they already treated 403, instead of failing

TierUnder the hoodhow much it should matter to you
Useful1my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaArtifactswhat it touches
KindImprovementsin v2.1.274,
Group of 2 Under the hood

Claude Code's remote-fetch and artifact-fetch checks now treat HTTP 404 like they already treated 403, instead of failing

What

Two places that fetch remote content used to only special-case HTTP 403 (forbidden) responses when deciding whether a failure was fatal:

  • The generic remote-config/answer-fetch helper, used for things like skill or answer retrieval, now also checks for HTTP 404 using a new omn check before treating the response as an unrecognized status failure.
  • The egress probe used before fetching artifact content now also has a parallel 404 path (checking for a plain-text response with a "not found" reason), alongside its existing 403 (forbidden) check.

Why

Previously a 404 response in these paths could be treated as an unexpected failure. Now it is recognized as a normal, non-fatal outcome, similar to how 403 was already handled, so Claude Code can respond to a missing resource more gracefully instead of erroring out.

See this entry in the whole of v2.1.274 →