Skip to main content
This page contains research findings derived from decompiled source code of @anthropic-ai/claude-code v2.1.88. It is intended for educational and research purposes only. All source code is the intellectual property of Anthropic.

Overview

Claude Code implements multiple remote control mechanisms that allow Anthropic and enterprise administrators to modify application behavior without explicit user consent. These mechanisms operate largely invisibly during normal use.

Remote Managed Settings

Architecture

Every eligible session fetches a settings payload from Anthropic’s servers on startup and then polls hourly:
Source: src/services/remoteManagedSettings/index.ts:105-107

Polling Behavior

Settings are fetched with up to 5 retries per attempt and refreshed every hour for the lifetime of the session.

Eligibility

Accept-or-Die Dialog

When remote settings contain changes flagged as “dangerous,” a blocking modal dialog is shown to the user. Rejecting the dialog terminates the application. There is no way to continue using Claude Code while declining the pushed settings.
The only options presented to the user are: accept the remote settings, or Claude Code exits.

Graceful Degradation

If the remote settings endpoint is unreachable, previously cached settings are applied:
Once remote settings have been applied and cached, they persist through subsequent server outages.

Feature Flag Kill Switches

Multiple features can be remotely disabled or re-enabled via GrowthBook feature flags without any user interaction or notification.

Kill Switch Reference

Bypass Permissions Kill Switch

Can disable permission bypass capabilities without user consent.

Auto Mode Circuit Breaker

Auto/yolo mode can be remotely broken, requiring an explicit reset.

Analytics Sink Kill Switch

Can remotely stop all analytics output — notably, this kill switch can itself be activated without user knowledge.

Voice Mode Kill Switch

Described in code as an emergency switch for voice mode.

Model Override System

Anthropic can remotely control which model internal employees use, and can push additional system prompt content:
The tengu_ant_model_override GrowthBook flag can:
  • Set the default model
  • Set the default effort level
  • Append arbitrary content to the system prompt
  • Define custom model aliases

Penguin Mode (Fast Mode Control)

Fast mode availability is determined by a dedicated endpoint, separate from the main settings fetch:
Multiple flags control fast mode availability:
  • tengu_penguins_off
  • tengu_marble_sandcastle
“Penguin mode” is the internal name for fast mode, following the animal codename convention used throughout the codebase.

Summary

The remote control infrastructure operates largely without user visibility or consent. GrowthBook feature flags can alter behavior for any user. Pushed settings that are rejected result in application termination.
Enterprise administrators can enforce policies that users cannot override. Anthropic can remotely change behavior for any user through GrowthBook feature flags, with no in-app notification of the change.