You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Canonical list of every environment variable APM reads, with defaults, allowed values, and scope.
sidebar
order
8
Single source of truth for every environment variable APM reads. Variables are grouped by purpose. Unless noted, scope is process (the running apm invocation and any child processes it spawns); a small number toggle behaviour for the entire shell session.
PAT / bearer credentials APM reads when cloning packages, calling host APIs, or wiring secrets into agent runtimes. Treat every value here as a secret: never commit, never log, never echo. See Authentication for the resolution chain and Security and supply chain for token scoping.
Variable
Purpose
Default
Notes
GITHUB_APM_PAT
Fine-grained PAT for APM module access on GitHub-class hosts (github.com, GHE Cloud, GHES). First in the GitHub modules precedence chain.
unset
Highest precedence for module clones. Also re-exported into Copilot / Codex runtimes.
GITHUB_APM_PAT_<ORG>
Per-org PAT override for github.com / GHE Cloud / GHES. <ORG> is the org name uppercased with non-alphanumeric chars replaced by _.
unset
Wins over GITHUB_APM_PAT when the package owner matches <ORG>.
GITHUB_TOKEN
Standard GitHub token. Falls back when GITHUB_APM_PAT is unset. Also forwarded to Codex.
unset
Used by modules, copilot, and models purposes.
GH_TOKEN
gh CLI token. Last in the GitHub modules chain before gh auth token and credential helpers.
unset
Forwarded to the Copilot runtime.
GITHUB_COPILOT_PAT
First-choice token for the Copilot runtime.
unset
Only consulted by the copilot purpose.
GITHUB_PERSONAL_ACCESS_TOKEN
Forwarded to the Copilot runtime when present.
unset
Not part of the modules resolution chain.
GITHUB_HOST
GHES / GHE Cloud hostname (e.g. ghe.example.com). Switches host classification, transport selection, and auth chain.
github.com
Process-wide; affects clone URLs and host detection.
GITLAB_APM_PAT
APM module access on GitLab SaaS or self-managed. First in the gitlab_modules chain.
unset
GITLAB_TOKEN
GitLab fallback token.
unset
GITLAB_HOST
Single self-managed GitLab hostname (e.g. gitlab.example.com).
unset
Recognised as GitLab-class for transport / auth.
APM_GITLAB_HOSTS
Comma-separated list of additional GitLab hostnames to classify as GitLab-class.
unset
Use when you operate multiple GitLab instances.
ADO_APM_PAT
Azure DevOps PAT for ado_modules.
unset
If unset, APM falls back to AAD bearer via az CLI.
ARTIFACTORY_APM_TOKEN
JFrog Artifactory token for artifactory_modules.
unset
Also used by the registry-proxy resolver.
GIT_SSH_COMMAND
Standard git SSH command override. APM reads it before composing its own SSH env.
unset
If you set it, APM preserves your value.
APM_GIT_CREDENTIAL_TIMEOUT
Seconds to wait for a git credential fill response.
implementation default
Integer-like string; invalid values are ignored.
Transport and protocol
Controls how APM clones packages from Git hosts. These settings can also be persisted via apm config set to avoid repeating flags or environment-variable exports.
1/true/yes disables read and write of the cache for the current invocation.
unset
Equivalent to --no-cache on commands that support it.
APM_TEMP_DIR
Override the temp directory used by clone and download operations.
system default
Useful on Windows when endpoint security blocks %TEMP%. Resolution: env var > temp_dir in ~/.apm/config.json > system default.
APM_NO_REFLINK
Any non-empty value disables copy-on-write (reflink) optimisation; APM falls back to plain copies.
unset
Diagnostic / portability escape hatch.
APM_COPILOT_COWORK_SKILLS_DIR
Override the destination directory for Copilot cowork skills.
platform auto-detect
Resolution: env var > config > auto-detect.
XDG_CACHE_HOME
Standard XDG base-directory variable APM consults when APM_CACHE_DIR is unset (Linux / macOS).
unset
Honoured per the XDG spec.
LOCALAPPDATA
Standard Windows variable APM consults when APM_CACHE_DIR is unset.
OS-provided
Used to derive the default Windows cache path.
CLAUDE_CONFIG_DIR
Override the destination Claude reads for skills / agents.
Claude default
Read by the Claude integration target.
Policy
Variable
Purpose
Default
Notes
APM_POLICY_DISABLE
Set to 1 to skip policy discovery and enforcement for the entire shell session. Loudly logged.
unset
Equivalent to the per-invocation --no-policy on commands that expose it. The only escape hatch for apm deps update. See apm policy.
Debugging and output
Variable
Purpose
Default
Notes
APM_DEBUG
Any non-empty value enables low-level debug logging in download, file ops, and clone-cache paths.
unset
Verbose; use for troubleshooting only.
APM_VERBOSE
1 enables verbose output for the install pipeline. APM also sets this internally when --verbose is passed.
unset
APM_PROGRESS
Force the install TUI on or off: always/on/1/true/yes to force on; never/quiet/off/0/false/no to force off; auto (default) lets APM decide based on CI, TERM, and TTY.
auto
The CLI sets APM_PROGRESS=quiet when --quiet is passed.
CI
Standard CI marker. When truthy (1/true/yes), APM disables the install TUI and adjusts a few interactive defaults.
unset
Read; never written.
TERM
Standard terminal type. "" or dumb disables the install TUI.
OS-provided
Read; never written.
Experimental and internal
These variables exist in the codebase but are not part of the documented contract. Behaviour and naming may change without notice. Do not rely on them in production scripts.
Variable
Purpose
Default
Notes
APM_RESOLVE_PARALLEL
Tunes parallelism in the dependency resolver.
implementation default
Subject to change.
APM_TIERED_RESOLVER
Set to 0/false/no/off to disable the tiered git-ref resolver (per-run cache + commits API + bare rev-parse + legacy clone) and force every install/update/outdated ref resolution through the legacy shallow-clone path. Emergency rollback for #1369.
1 (on)
Subject to change. Removal expected once the tiered stack has soaked through a release.
APM_LEGACY_SKILL_PATHS
Toggles legacy skill-path layout in integration targets.
unset
Compatibility shim; will be removed.
APM_E2E_TESTS
Marks the process as an end-to-end test run; relaxes some interactive guards.