New helper functions can check circuit breakers for bypass-immune or local-projection-only flags
Two new helper functions were added on top of Claude Code's existing circuit-breaker registry (a mechanism that can disable checks under certain conditions): one checks whether any breaker for a given check has bypassImmune set to true, and the other checks whether one has localProjectionOnly set to true. Both use a shared collector that gathers a check's own circuit-breaker settings plus any additional ones listed under it.
This lets other code ask, for a given check, whether it's immune to being bypassed or whether it should only apply locally rather than being reported elsewhere, which suggests finer control over how individual checks can be overridden or scoped.
What specific checks use bypassImmune or localProjectionOnly, and what calls these new helpers, is not stated.