This is a revision of my earlier pass over Claude Code's bundled cli.js. The first version grouped variables into inventories, but the obvious missing piece was a full row-by-row table.
This version includes every environment variable I extracted from the bundle in one complete table, with a family label, a short explanation of likely purpose, and a note about whether the explanation comes from a directly visible startup path or from bundled-module inference.
For version 2.1.83, the extraction yields 477 unique environment variable names.
Method
I extracted all dot-form and bracket-form environment accesses from the bundled file and then deduplicated them:
rg -o "process\.env\.[A-Za-z0-9_]+" cli.js | sort -u
rg -o "process\.env\[['"][A-Za-z0-9_]+['"]\]" cli.js | sort -u
I also looked for assignments like process.env.FOO = ... so I could distinguish variables that the bundle writes or normalizes from variables it only reads.
How To Read The Table
Likely purpose / usageis exact for the few top-level startup variables and intentionally conservative for the rest.Basistells you whether the row is from direct bootstrap code or from a bundled-module naming inference.- If you are debugging startup specifically, start with the
Entrypointfamily. - If you are debugging auth, routing, or observability, the
Anthropic,Cloud,MCP, andTelemetryrows are usually the high-signal ones.
Family Summary
| Family | Count |
|---|---|
| Entrypoint | 5 |
| Anthropic | 21 |
| Claude Code | 157 |
| Claude | 20 |
| Cloud | 35 |
| Telemetry | 32 |
| MCP | 8 |
| Runtime | 65 |
| Platform/CI | 39 |
| Misc | 95 |
Complete Environment Variable Table
| Variable | Family | Likely purpose / usage | Basis |
|---|---|---|---|
CLAUDE_CODE_BRIEF | Entrypoint | Enables brief mode, effectively acting like an environment form of the --brief flag. | Direct cli.js bootstrap usage |
CLAUDE_CODE_REMOTE | Entrypoint | When set to "true", enables the remote-mode startup branch. | Direct cli.js bootstrap usage |
CLAUDE_CODE_SIMPLE | Entrypoint | Set to "1" when the user passes --bare, enabling simple or bare mode behavior. | Direct cli.js bootstrap usage |
COREPACK_ENABLE_AUTO_PIN | Entrypoint | Forced to "0" during startup so Corepack does not auto-pin package manager metadata. | Direct cli.js bootstrap usage |
NODE_OPTIONS | Entrypoint | Node runtime options; the remote-mode path appends --max-old-space-size=8192. | Direct cli.js bootstrap usage |
ANTHROPIC_API_KEY | Anthropic | Credential or bearer token used for authentication. | Inferred from bundled module naming |
ANTHROPIC_AUTH_TOKEN | Anthropic | Credential or bearer token used for authentication. | Inferred from bundled module naming |
ANTHROPIC_BASE_URL | Anthropic | Endpoint or service URL override. | Bundle writes or normalizes this env |
ANTHROPIC_BEDROCK_BASE_URL | Anthropic | Endpoint or service URL override. | Inferred from bundled module naming |
ANTHROPIC_BETAS | Anthropic | Anthropic client authentication, endpoint routing, or model behavior setting. | Inferred from bundled module naming |
ANTHROPIC_CUSTOM_HEADERS | Anthropic | Anthropic client authentication, endpoint routing, or model behavior setting. | Inferred from bundled module naming |
ANTHROPIC_CUSTOM_MODEL_OPTION | Anthropic | Model selection or model override setting. | Inferred from bundled module naming |
ANTHROPIC_CUSTOM_MODEL_OPTION_DESCRIPTION | Anthropic | Anthropic client authentication, endpoint routing, or model behavior setting. | Inferred from bundled module naming |
ANTHROPIC_CUSTOM_MODEL_OPTION_NAME | Anthropic | Anthropic client authentication, endpoint routing, or model behavior setting. | Inferred from bundled module naming |
ANTHROPIC_DEFAULT_HAIKU_MODEL | Anthropic | Model selection or model override setting. | Inferred from bundled module naming |
ANTHROPIC_DEFAULT_OPUS_MODEL | Anthropic | Model selection or model override setting. | Inferred from bundled module naming |
ANTHROPIC_DEFAULT_SONNET_MODEL | Anthropic | Model selection or model override setting. | Inferred from bundled module naming |
ANTHROPIC_FOUNDRY_API_KEY | Anthropic | Credential or bearer token used for authentication. | Inferred from bundled module naming |
ANTHROPIC_FOUNDRY_BASE_URL | Anthropic | Endpoint or service URL override. | Inferred from bundled module naming |
ANTHROPIC_FOUNDRY_RESOURCE | Anthropic | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
ANTHROPIC_LOG | Anthropic | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
ANTHROPIC_MODEL | Anthropic | Model selection or model override setting. | Inferred from bundled module naming |
ANTHROPIC_SMALL_FAST_MODEL | Anthropic | Model selection or model override setting. | Inferred from bundled module naming |
ANTHROPIC_SMALL_FAST_MODEL_AWS_REGION | Anthropic | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
ANTHROPIC_UNIX_SOCKET | Anthropic | Anthropic client authentication, endpoint routing, or model behavior setting. | Inferred from bundled module naming |
ANTHROPIC_VERTEX_PROJECT_ID | Anthropic | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
CLAUDE_CODE_ACCESSIBILITY | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_ACCOUNT_TAGGED_ID | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_ACCOUNT_UUID | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_ACTION | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_ADDITIONAL_PROTECTION | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_ALWAYS_ENABLE_EFFORT | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_API_BASE_URL | Claude Code | Endpoint or service URL override. | Inferred from bundled module naming |
CLAUDE_CODE_API_KEY_FILE_DESCRIPTOR | Claude Code | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
CLAUDE_CODE_API_KEY_HELPER_TTL_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_ATTRIBUTION_HEADER | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_AUTO_COMPACT_WINDOW | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_AUTO_CONNECT_IDE | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_BASE_REF | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_BASH_SANDBOX_SHOW_INDICATOR | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_BLOCKING_LIMIT_OVERRIDE | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_BRIEF_UPLOAD | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_BUBBLEWRAP | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Bundle writes or normalizes this env |
CLAUDE_CODE_CLIENT_CERT | Claude Code | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
CLAUDE_CODE_CLIENT_KEY | Claude Code | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
CLAUDE_CODE_CLIENT_KEY_PASSPHRASE | Claude Code | Secret, password, or passphrase used during authentication. | Inferred from bundled module naming |
CLAUDE_CODE_CONTAINER_ID | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_CUSTOM_OAUTH_URL | Claude Code | Endpoint or service URL override. | Inferred from bundled module naming |
CLAUDE_CODE_DATADOG_FLUSH_INTERVAL_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_DEBUG_LOG_LEVEL | Claude Code | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_CODE_DEBUG_LOGS_DIR | Claude Code | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_CODE_DEBUG_REPAINTS | Claude Code | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_CODE_DIAGNOSTICS_FILE | Claude Code | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_1M_CONTEXT | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_ADVISOR_TOOL | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_ATTACHMENTS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_AUTO_MEMORY | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_BACKGROUND_TASKS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_CLAUDE_MDS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_COMMAND_INJECTION_CHECK | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_CRON | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_FAST_MODE | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_FILE_CHECKPOINTING | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_GIT_INSTRUCTIONS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_LEGACY_MODEL_REMAP | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_OFFICIAL_MARKETPLACE_AUTOINSTALL | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_PRECOMPACT_SKIP | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_TERMINAL_TITLE | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_THINKING | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DISABLE_VIRTUAL_SCROLL | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_DONT_INHERIT_ENV | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EAGER_FLUSH | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EFFORT_LEVEL | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EMIT_SESSION_STATE_EVENTS | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EMIT_TOOL_USE_SUMMARIES | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_CFC | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_FINE_GRAINED_TOOL_STREAMING | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_PROMPT_SUGGESTION | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_SDK_FILE_CHECKPOINTING | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_TASKS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_TELEMETRY | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_TOKEN_USAGE_ATTACHMENT | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENABLE_XAA | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_ENHANCED_TELEMETRY_BETA | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_ENTRYPOINT | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Bundle writes or normalizes this env |
CLAUDE_CODE_ENVIRONMENT_KIND | Claude Code | Cloud, account, or environment routing selector. | Bundle writes or normalizes this env |
CLAUDE_CODE_ENVIRONMENT_RUNNER_VERSION | Claude Code | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
CLAUDE_CODE_EXIT_AFTER_FIRST_RENDER | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EXIT_AFTER_STOP_DELAY | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EXTRA_BODY | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_EXTRA_METADATA | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_FILE_READ_MAX_OUTPUT_TOKENS | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_FORCE_FULL_LOGO | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_FORCE_GLOBAL_CACHE | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_FRAME_TIMING_LOG | Claude Code | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_CODE_GIT_BASH_PATH | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_GLOB_HIDDEN | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_GLOB_NO_IGNORE | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_GLOB_TIMEOUT_SECONDS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_HOST_PLATFORM | Claude Code | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
CLAUDE_CODE_IDE_HOST_OVERRIDE | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_IDE_SKIP_AUTO_INSTALL | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_IDE_SKIP_VALID_CHECK | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_INCLUDE_PARTIAL_MESSAGES | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_IS_COWORK | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_MAX_OUTPUT_TOKENS | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_MAX_RETRIES | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_MAX_TOOL_USE_CONCURRENCY | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_MCP_INSTR_DELTA | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_NEW_INIT | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_OAUTH_CLIENT_ID | Claude Code | OAuth or client identifier. | Inferred from bundled module naming |
CLAUDE_CODE_OAUTH_REFRESH_TOKEN | Claude Code | Credential or bearer token used for authentication. | Inferred from bundled module naming |
CLAUDE_CODE_OAUTH_SCOPES | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_OAUTH_TOKEN | Claude Code | Credential or bearer token used for authentication. | Inferred from bundled module naming |
CLAUDE_CODE_OAUTH_TOKEN_FILE_DESCRIPTOR | Claude Code | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
CLAUDE_CODE_ORGANIZATION_UUID | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_OTEL_FLUSH_TIMEOUT_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_OTEL_HEADERS_HELPER_DEBOUNCE_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_OTEL_SHUTDOWN_TIMEOUT_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_PERFETTO_TRACE | Claude Code | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_CODE_PLAN_MODE_INTERVIEW_PHASE | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_PLAN_MODE_REQUIRED | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_PLAN_V2_AGENT_COUNT | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_PLAN_V2_EXPLORE_AGENT_COUNT | Claude Code | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CLAUDE_CODE_PLUGIN_CACHE_DIR | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_PLUGIN_GIT_TIMEOUT_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_PLUGIN_SEED_DIR | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_PLUGIN_USE_ZIP_CACHE | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_POST_FOR_SESSION_INGRESS_V2 | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_PROFILE_STARTUP | Claude Code | Logging, tracing, profiling, or diagnostics control. | Bundle writes or normalizes this env |
CLAUDE_CODE_PROVIDER_MANAGED_BY_HOST | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_PROXY_RESOLVES_HOSTS | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_QUESTION_PREVIEW_FORMAT | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_REMOTE_ENVIRONMENT_TYPE | Claude Code | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
CLAUDE_CODE_REMOTE_MEMORY_DIR | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_REMOTE_SEND_KEEPALIVES | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_REMOTE_SESSION_ID | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_RESUME_INTERRUPTED_TURN | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_SAVE_HOOK_ADDITIONAL_CONTEXT | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_SEARCH_HINTS_IN_LIST | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_SESSION_ACCESS_TOKEN | Claude Code | Credential or bearer token used for authentication. | Bundle writes or normalizes this env |
CLAUDE_CODE_SESSIONEND_HOOKS_TIMEOUT_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_SHELL | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_SHELL_PREFIX | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_SKIP_BEDROCK_AUTH | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_SKIP_FAST_MODE_NETWORK_ERRORS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_SKIP_FOUNDRY_AUTH | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_SKIP_PROMPT_HISTORY | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_SKIP_VERTEX_AUTH | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_SLOW_OPERATION_THRESHOLD_MS | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_SSE_PORT | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_STALL_TIMEOUT_MS_FOR_TESTING | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_SUBAGENT_MODEL | Claude Code | Model selection or model override setting. | Inferred from bundled module naming |
CLAUDE_CODE_SUBPROCESS_ENV_SCRUB | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_SYNC_PLUGIN_INSTALL | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_SYNC_PLUGIN_INSTALL_TIMEOUT_MS | Claude Code | Timing or timeout configuration. | Inferred from bundled module naming |
CLAUDE_CODE_SYNTAX_HIGHLIGHT | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_TAGS | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_TASK_LIST_ID | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_TEST_FIXTURES_ROOT | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_TMPDIR | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_CODE_TMUX_PREFIX | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_TMUX_PREFIX_CONFLICTS | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_TMUX_SESSION | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_TMUX_TRUECOLOR | Claude Code | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
CLAUDE_CODE_USE_BEDROCK | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USE_CCR_V2 | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USE_COWORK_PLUGINS | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USE_FOUNDRY | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USE_NATIVE_FILE_SEARCH | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USE_POWERSHELL_TOOL | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USE_VERTEX | Claude Code | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CODE_USER_EMAIL | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_WEBSOCKET_AUTH_FILE_DESCRIPTOR | Claude Code | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
CLAUDE_CODE_WORKER_EPOCH | Claude Code | Claude Code product feature, experiment, session, plugin, or tool behavior setting. | Inferred from bundled module naming |
CLAUDE_CODE_WORKSPACE_HOST_PATHS | Claude Code | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_AFTER_LAST_COMPACT | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_AGENT_SDK_CLIENT_APP | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_AGENT_SDK_DISABLE_BUILTIN_AGENTS | Claude | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_AGENT_SDK_MCP_NO_PREFIX | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_AGENT_SDK_VERSION | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_AUTO_BACKGROUND_TASKS | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_AUTOCOMPACT_PCT_OVERRIDE | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_BRIDGE_USE_CCR_V2 | Claude | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_CHROME_PERMISSION_MODE | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_CONFIG_DIR | Claude | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_COWORK_MEMORY_EXTRA_GUIDELINES | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_COWORK_MEMORY_PATH_OVERRIDE | Claude | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
CLAUDE_DEBUG | Claude | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
CLAUDE_ENABLE_STREAM_WATCHDOG | Claude | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_ENV_FILE | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_FORCE_DISPLAY_SURVEY | Claude | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CLAUDE_REPL_MODE | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_SESSION_INGRESS_TOKEN_FILE | Claude | Adjacent Claude runtime or SDK-level configuration. | Inferred from bundled module naming |
CLAUDE_TMPDIR | Claude | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
AWS_ACCESS_KEY_ID | Cloud | Cloud-provider credential, region, or routing setting. | Bundle writes or normalizes this env |
AWS_BEARER_TOKEN_BEDROCK | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
AWS_DEFAULT_REGION | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
AWS_EXECUTION_ENV | Cloud | Cloud-provider credential, region, or routing setting. | Bundle writes or normalizes this env |
AWS_LAMBDA_BENCHMARK_MODE | Cloud | Cloud-provider credential, region, or routing setting. | Bundle writes or normalizes this env |
AWS_LAMBDA_FUNCTION_NAME | Cloud | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
AWS_LOGIN_CACHE_DIRECTORY | Cloud | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
AWS_PROFILE | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
AWS_REGION | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
AWS_SECRET_ACCESS_KEY | Cloud | Cloud-provider credential, region, or routing setting. | Bundle writes or normalizes this env |
AWS_SESSION_TOKEN | Cloud | Credential or bearer token used for authentication. | Bundle writes or normalizes this env |
AZURE_ADDITIONALLY_ALLOWED_TENANTS | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
AZURE_AUTHORITY_HOST | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
AZURE_CLIENT_CERTIFICATE_PASSWORD | Cloud | Secret, password, or passphrase used during authentication. | Inferred from bundled module naming |
AZURE_CLIENT_CERTIFICATE_PATH | Cloud | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
AZURE_CLIENT_ID | Cloud | OAuth or client identifier. | Inferred from bundled module naming |
AZURE_CLIENT_SECRET | Cloud | Secret, password, or passphrase used during authentication. | Inferred from bundled module naming |
AZURE_CLIENT_SEND_CERTIFICATE_CHAIN | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
AZURE_FEDERATED_TOKEN_FILE | Cloud | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
AZURE_FUNCTIONS_ENVIRONMENT | Cloud | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
AZURE_IDENTITY_DISABLE_MULTITENANTAUTH | Cloud | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
AZURE_PASSWORD | Cloud | Secret, password, or passphrase used during authentication. | Inferred from bundled module naming |
AZURE_POD_IDENTITY_AUTHORITY_HOST | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
AZURE_REGIONAL_AUTHORITY_NAME | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
AZURE_TENANT_ID | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
AZURE_TOKEN_CREDENTIALS | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
AZURE_USERNAME | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
BEDROCK_BASE_URL | Cloud | Endpoint or service URL override. | Inferred from bundled module naming |
CLOUD_ML_REGION | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
CLOUD_RUN_JOB | Cloud | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GCLOUD_PROJECT | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
GOOGLE_APPLICATION_CREDENTIALS | Cloud | Path, file descriptor, or key material for credentials or secure transport. | Inferred from bundled module naming |
GOOGLE_CLOUD_PROJECT | Cloud | Cloud-provider credential, region, or routing setting. | Inferred from bundled module naming |
GOOGLE_CLOUD_QUOTA_PROJECT | Cloud | Cloud, account, or environment routing selector. | Inferred from bundled module naming |
VERTEX_BASE_URL | Cloud | Endpoint or service URL override. | Inferred from bundled module naming |
BETA_TRACING_ENDPOINT | Telemetry | Endpoint or service URL override. | Inferred from bundled module naming |
DEBUG | Telemetry | Debug logging or diagnostics toggle. | Bundle writes or normalizes this env |
DEBUG_AUTH | Telemetry | Debug logging or diagnostics toggle. | Inferred from bundled module naming |
DEBUG_SDK | Telemetry | Debug logging or diagnostics toggle. | Inferred from bundled module naming |
ENABLE_BETA_TRACING_DETAILED | Telemetry | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
GRPC_DEFAULT_SSL_ROOTS_FILE_PATH | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_NODE_TRACE | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_NODE_USE_ALTERNATIVE_RESOLVER | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_NODE_VERBOSITY | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_SSL_CIPHER_SUITES | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_TRACE | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
GRPC_VERBOSITY | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_ENDPOINT | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_HEADERS | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_INSECURE | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_LOGS_PROTOCOL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_METRICS_PROTOCOL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE | Telemetry | Observability or transport-level telemetry configuration. | Bundle writes or normalizes this env |
OTEL_EXPORTER_OTLP_PROTOCOL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_PROMETHEUS_HOST | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_EXPORTER_PROMETHEUS_PORT | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_LOG_TOOL_CONTENT | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_LOG_TOOL_DETAILS | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_LOG_USER_PROMPTS | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_LOGS_EXPORT_INTERVAL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_LOGS_EXPORTER | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_METRIC_EXPORT_INTERVAL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_METRICS_EXPORTER | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_TRACES_EXPORT_INTERVAL | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
OTEL_TRACES_EXPORTER | Telemetry | Observability or transport-level telemetry configuration. | Inferred from bundled module naming |
MCP_CLIENT_SECRET | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_OAUTH_CALLBACK_PORT | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_OAUTH_CLIENT_METADATA_URL | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_REMOTE_SERVER_CONNECTION_BATCH_SIZE | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_SERVER_CONNECTION_BATCH_SIZE | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_TIMEOUT | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_TOOL_TIMEOUT | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
MCP_XAA_IDP_CLIENT_SECRET | MCP | Model Context Protocol authentication, callback, timeout, or connection tuning. | Inferred from bundled module naming |
__CFBundleIdentifier | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
ALACRITTY_LOG | Runtime | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
APPDATA | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
BROWSER | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
CLI_WIDTH | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
COLORTERM | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
comspec | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
ConEmuANSI | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
ConEmuPID | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
ConEmuTask | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
EDITOR | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
GNOME_TERMINAL_SERVICE | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
grpc_proxy | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
HOME | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
http_proxy | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
HTTP_PROXY | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
https_proxy | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
HTTPS_PROXY | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
ITERM_SESSION_ID | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
KITTY_WINDOW_ID | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
KONSOLE_VERSION | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
LANG | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
LC_ALL | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
LC_TERMINAL | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
LC_TIME | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
LOCALAPPDATA | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
MSYSTEM | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
no_grpc_proxy | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
no_proxy | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
NO_PROXY | Runtime | Proxy configuration for outbound HTTP, HTTPS, or gRPC network traffic. | Inferred from bundled module naming |
NODE_DEBUG | Runtime | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
NODE_EXTRA_CA_CERTS | Runtime | Path, file descriptor, or key material for credentials or secure transport. | Bundle writes or normalizes this env |
NODE_V8_COVERAGE | Runtime | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
NoDefaultCurrentDirectoryInExePath | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
OSTYPE | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
PATH | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
PATHEXT | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
ProgramData | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
ProgramFiles | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
SHELL | Runtime | Filesystem path, working-directory behavior, or local storage location. | Bundle writes or normalizes this env |
SSH_CLIENT | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
SSH_CONNECTION | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
SSH_TTY | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
SystemRoot | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
SYSTEMROOT | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
TEMP | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
TERM | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
TERM_PROGRAM | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
TERM_PROGRAM_VERSION | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
TERMINAL | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
TERMINAL_EMULATOR | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
TILIX_ID | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
TMPDIR | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
TMUX | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
TMUX_PANE | Runtime | User-interface, shell, terminal, or IDE integration setting. | Inferred from bundled module naming |
USER | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
USERNAME | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
USERPROFILE | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
VISUAL | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
VSCODE_GIT_ASKPASS_MAIN | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
VTE_VERSION | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
WT_SESSION | Runtime | Terminal, shell, locale, or operating-system environment detection. | Bundle writes or normalizes this env |
XDG_CONFIG_HOME | Runtime | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
XDG_RUNTIME_DIR | Runtime | Runtime or host-environment detection setting. | Inferred from bundled module naming |
ZED_TERM | Runtime | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
BUILDKITE | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
CF_PAGES | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
CIRCLECI | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
CODESPACES | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
DENO_DEPLOYMENT_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
DYNO | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
FLY_APP_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
FLY_MACHINE_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
FUNCTION_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
FUNCTION_TARGET | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GAE_MODULE_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GAE_SERVICE | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_ACTION_INPUTS | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_ACTION_PATH | Platform/CI | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
GITHUB_ACTIONS | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_ACTOR | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_ACTOR_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_EVENT_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_REPOSITORY | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_REPOSITORY_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_REPOSITORY_OWNER | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITHUB_REPOSITORY_OWNER_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITLAB_CI | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
GITPOD_WORKSPACE_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
K_CONFIGURATION | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
K_SERVICE | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
KUBERNETES_SERVICE_HOST | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
NETLIFY | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
RAILWAY_ENVIRONMENT_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
RAILWAY_SERVICE_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
RENDER | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
REPL_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
REPL_SLUG | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
RUNNER_ENVIRONMENT | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
RUNNER_OS | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
SPACE_CREATOR_USER_ID | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
VERCEL | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
WEBSITE_SITE_NAME | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
WEBSITE_SKU | Platform/CI | Hosted platform, cloud runtime, or CI environment detection signal. | Inferred from bundled module naming |
API_TIMEOUT_MS | Misc | Timing or timeout configuration. | Inferred from bundled module naming |
APP_URL | Misc | Endpoint or service URL override. | Inferred from bundled module naming |
AUDIO_CAPTURE_NODE_PATH | Misc | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
BASH_MAX_OUTPUT_LENGTH | Misc | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
CCR_ENABLE_BUNDLE | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CCR_FORCE_BUNDLE | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
CHOKIDAR_INTERVAL | Misc | Timing or timeout configuration. | Inferred from bundled module naming |
CHOKIDAR_USEPOLLING | Misc | Third-party library behavior override. | Inferred from bundled module naming |
CLAUBBIT | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
CURSOR_TRACE_ID | Misc | Logging, tracing, profiling, or diagnostics control. | Inferred from bundled module naming |
DEMO_VERSION | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
DETECT_GCP_RETRIES | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
DISABLE_AUTO_COMPACT | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_AUTOUPDATER | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Bundle writes or normalizes this env |
DISABLE_BUG_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_CLAUDE_CODE_SM_COMPACT | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_COMPACT | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_COST_WARNINGS | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_DOCTOR_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_ERROR_REPORTING | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_EXTRA_USAGE_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_FEEDBACK_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_INSTALL_GITHUB_APP_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_INSTALLATION_CHECKS | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_INTERLEAVED_THINKING | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_LOGIN_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_LOGOUT_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_PROMPT_CACHING | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_PROMPT_CACHING_HAIKU | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_PROMPT_CACHING_OPUS | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_PROMPT_CACHING_SONNET | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_TELEMETRY | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
DISABLE_UPGRADE_COMMAND | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
EMBEDDED_SEARCH_TOOLS | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
ENABLE_CLAUDE_CODE_SM_COMPACT | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
ENABLE_CLAUDEAI_MCP_SERVERS | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
ENABLE_ENHANCED_TELEMETRY_BETA | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
ENABLE_MCP_LARGE_OUTPUT_FILES | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
ENABLE_PROMPT_CACHING_1H_BEDROCK | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
ENABLE_TOOL_SEARCH | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
FALLBACK_FOR_ALL_PRIMARY_MODELS | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
FORCE_AUTOUPDATE_PLUGINS | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
FORCE_CODE_TERMINAL | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
GCE_METADATA_HOST | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
GCE_METADATA_IP | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
gcloud_project | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
google_application_credentials | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
google_cloud_project | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
GRACEFUL_FS_PLATFORM | Misc | Third-party library behavior override. | Inferred from bundled module naming |
IS_DEMO | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
IS_SANDBOX | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
JEST_WORKER_ID | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
LOCAL_BRIDGE | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
MAX_MCP_OUTPUT_TOKENS | Misc | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
MAX_STRUCTURED_OUTPUT_RETRIES | Misc | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
MAX_THINKING_TOKENS | Misc | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
METADATA_SERVER_DETECTION | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
MODIFIERS_NODE_PATH | Misc | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
npm_package_config_libvips | Misc | Third-party library behavior override. | Inferred from bundled module naming |
P4PORT | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
PKG_CONFIG_PATH | Misc | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
PROJECT_DOMAIN | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
PWD | Misc | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
REVIEW_REMOTE | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SAFEUSER | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SESSION_INGRESS_URL | Misc | Endpoint or service URL override. | Inferred from bundled module naming |
SESSIONNAME | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SHARP_FORCE_GLOBAL_LIBVIPS | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
SHARP_IGNORE_GLOBAL_LIBVIPS | Misc | Third-party library behavior override. | Inferred from bundled module naming |
SLASH_COMMAND_TOOL_CHAR_BUDGET | Misc | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
SRT_DEBUG | Misc | Debug logging or diagnostics toggle. | Inferred from bundled module naming |
STY | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SWE_BENCH_INSTANCE_ID | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SWE_BENCH_RUN_ID | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SWE_BENCH_TASK_ID | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
SYSTEM_OIDCREQUESTURI | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
TASK_MAX_OUTPUT_LENGTH | Misc | Limit, capacity, token budget, batch size, or concurrency tuning. | Inferred from bundled module naming |
TEAM_MEMORY_SYNC_URL | Misc | Endpoint or service URL override. | Inferred from bundled module naming |
TERMINATOR_UUID | Misc | Terminal, shell, locale, or operating-system environment detection. | Inferred from bundled module naming |
TEST_ENABLE_SESSION_PERSISTENCE | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
TEST_GRACEFUL_FS_GLOBAL_PATCH | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
UNDICI_NO_FG | Misc | Third-party library behavior override. | Inferred from bundled module naming |
URL_HANDLER_NODE_PATH | Misc | Filesystem path, working-directory behavior, or local storage location. | Inferred from bundled module naming |
USE_API_CONTEXT_MANAGEMENT | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
USE_BUILTIN_RIPGREP | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
USE_LOCAL_OAUTH | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
USE_STAGING_OAUTH | Misc | Feature flag, kill switch, forced behavior, or backend selection toggle. | Inferred from bundled module naming |
UV_THREADPOOL_SIZE | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
VCR_RECORD | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
VisualStudioVersion | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
VOICE_STREAM_BASE_URL | Misc | Endpoint or service URL override. | Inferred from bundled module naming |
WS_NO_BUFFER_UTIL | Misc | Third-party library behavior override. | Inferred from bundled module naming |
WS_NO_UTF_8_VALIDATE | Misc | Third-party library behavior override. | Inferred from bundled module naming |
WSL_DISTRO_NAME | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
XTERM_VERSION | Misc | Bundled-module configuration or feature flag referenced by the CLI bundle. | Inferred from bundled module naming |
Takeaway
The important distinction is still the same: the visible cli.js bootstrap surface is small, but the bundled reference surface is large because the artifact contains first-party product code plus cloud auth helpers, MCP, telemetry, runtime detection, platform probes, and vendored libraries.
Putting every variable into one table does not make the bundle a public contract. It does make it much easier to reason about which names are likely worth trying when you need to debug a concrete behavior.
