Live artifact watches that fail to start from a server hiccup now retry on the patient schedule instead of burning attempts.
tengu_slate_lantern On for this account, and not off by defaultThe flag server returned on for the one account this site reads, and nothing in this release compiles it off by default. The compiled default is shown below, and says which it is when we cannot read one: a fifth of gates compile in a string or a number rather than on or off, and most published releases have no gate table behind them at all. No client can see what the server returns for your account.
This account: on · anonymous baseline: on · compiled default in v2.1.250: on
Read once, for one account on one subscription tier, against v2.1.250. It isn't a statement about your account. What a flag value here can and cannot tell you
What's wrong with this entry?
When a live artifact watch fails to start, Claude Code now decides whether the failure looks like a transient server problem rather than a permanent one, and routes it to the slow stall-style retry instead of the fast consecutive-failure backoff. A failure counts as a temporary outage if the server replied with a retryable status, or if the request produced no reply at all and hung for at least 10 seconds. Neither of these markers existed on this error path in 2.1.248.
- The retryable-status test returns true for HTTP status 500 or above, 429 and 408; such a status attaches an
unavailablemarker to the startup response. - A startup error code of
boot_request_errorattaches anoAnswermarker, meaning the request errored out with no reply. - The startup builder records the time just before the request is issued, so a hung startup can be measured; a
noAnswerresult plus elapsed time of at leaststallThresholdMs, the reconnect timing default compiled at 10000 ms, counts as unavailable. - The failure helper gained
unavailableandhttpStatusoptions and passes astalledflag plus the HTTP status into the reconnect scheduler. - All of this sits inside the live-watch feature, which is off unless the
tengu_slate_lanternflag is switched on for your account.
boot_request_error, ...(i.errorCode === "boot_request_error" && { noAnswer: !0 }),
Strings lifted out of the shipped bundle, so the claim above can be checked against them.