Skip to content

apm install

Terminal window
apm install [PACKAGE_REF...] [OPTIONS]

apm install resolves the dependencies declared in apm.yml, downloads them (with transitive resolution and a content-addressed cache), runs the built-in security scan, and deploys the resulting primitives plus the project’s own .apm/ content into every harness target it detects. It writes apm.lock.yaml so the next install on any machine reproduces the same files.

With no arguments it installs everything from apm.yml. With one or more PACKAGE_REF arguments it adds those packages to apm.yml (creating one if needed) and installs only what was added. apm install --mcp NAME is the dedicated path for adding an MCP server entry.

PACKAGE_REF accepts: shorthand (owner/repo), HTTPS or SSH Git URLs, FQDN shorthand (host/owner/repo), local paths (./path, /abs/path, ~/path), packed bundles (./bundle.zip, ./bundle.tar.gz), and marketplace refs (NAME@MARKETPLACE[#ref]).

FlagDefaultDescription
--updateoffRe-resolve dependencies to the latest version or Git ref allowed by apm.yml and rewrite apm.lock.yaml. Mutable Git refs must resolve against upstream; APM does not fall back to stale refs from the local bare Git cache. Mutually exclusive with --frozen. For interactive use with a confirmation prompt, use apm update instead.
--frozenoffLockfile-only install: refuse to resolve anything new and fail before any project, config, deployment, or cache write if apm.lock.yaml is missing or out of sync with apm.yml, including MCP state. Mirrors npm ci. Mutually exclusive with --update, positional package additions, and --mcp.
--dry-runoffPrint the install plan without deployment writes. If a positional package bootstraps a project, the new apm.yml and any explicit --target selection are kept for the next run.
--forceoffOverwrite locally-authored files on collision and bypass the security scan’s critical-finding block. Does not suppress general install errors (any reported error still exits 1, matching npm / pip / cargo) or select ref freshness. Add --update or --refresh to resolve mutable refs upstream; apm update does so with or without --force. Use only after independent verification.
--verbose, -voffShow per-file paths and full error context in the diagnostic summary.
--devoffAdd new packages to devDependencies. Dev deps install locally but are excluded from apm pack output.
FlagDefaultDescription
--root DIR$PWDRedirect every write — apm_modules/, apm.lock.yaml, .gitignore, and integrated harness files — under DIR, while apm.yml, .apm/, and local-path dependencies still resolve from the current working directory. Mirrors pip install --target / npm install --prefix. DIR is created if missing (except under --dry-run, which refuses to create it). Not valid with --global (user scope), which exits 2.
FlagDefaultDescription
--target, -t VALUEauto-detectForce deployment targets. Comma-separated for multiple (-t claude,cursor). Values: copilot, claude, grok-build, cursor, opencode, codex, gemini, antigravity, windsurf, kiro, intellij, vscode, agent-skills, all; experimental copilot-cowork, copilot-app, and grok-cloud (skills only) are also accepted when enabled. IntelliJ-specific integration is MCP-only and writes JetBrains Copilot’s user-scope MCP config; package file primitives use the Copilot profile. all excludes agent-skills, antigravity, intellij, and all experimental targets; combine them explicitly to add them, for example all,intellij. Explicit MCP target lists are exact: intellij,claude writes only those two MCP configs. See the precedence note below. With nothing to detect, install exits 2 with a teaching message.
--runtime VALUEunsetLegacy alias for --target (single value only). Still accepted; prefer --target.
--exclude VALUEunsetSkip one runtime from the resolved MCP/LSP target set (explicit selection, manifest, saved config, or auto-detection).
--only apm|mcpbothInstall only APM packages or only MCP servers.
-g, --globaloffInstall to user scope (~/.apm/) instead of the current project. MCP servers deploy only to global-capable runtimes, such as Copilot CLI, Claude Code, Codex CLI, Gemini CLI, Antigravity CLI, Kiro, Windsurf, and JetBrains Copilot.
--legacy-skill-pathsoffDeploy skills to per-client paths (.cursor/skills/, .github/skills/, …) instead of the converged .agents/skills/. Env: APM_LEGACY_SKILL_PATHS=1.

File primitives resolve targets in this order: --target, manifest targets:, apm config set target ..., then auto-detection. MCP resolves --runtime / --target, then manifest targets, saved config, then auto-detection only when apm.yml declares no targets.

FlagDefaultDescription
--no-policyoffSkip org policy enforcement for this invocation. Loudly logged. Does not bypass apm audit --ci. Env: APM_POLICY_DISABLE=1.
--audit <off|warn|block>(config/policy)Run a content audit over the files this install deploys. warn records findings in the summary; block halts the install on critical findings. Overrides your audit-on-install config but cannot relax an org policy floor. Requires the external-scanners experimental flag.
--no-auditoffDisable the install-time audit for this invocation (equivalent to --audit off). Cannot relax an org policy block floor.
--trust-transitive-mcpoffTrust self-defined MCP servers shipped by transitive packages without re-declaring them in your apm.yml.
--allow-insecureoffPermit direct http:// (non-TLS) dependencies.
--allow-insecure-host HOSTNAMEunsetPermit transitive http:// dependencies from HOSTNAME. Repeatable.
FlagDefaultDescription
--parallel-downloads N4Max concurrent package downloads. 0 disables parallelism.
--refreshoffRe-resolve dependency refs against upstream and bypass cached content. Unlike --update, which may reuse content at a freshly resolved SHA, --refresh fetches it again.
--sshoffPrefer SSH transport for shorthand (owner/repo) deps. Mutually exclusive with --https.
--httpsoffPrefer HTTPS transport for shorthand deps. Mutually exclusive with --ssh.
--allow-protocol-fallbackoffRestore the legacy permissive HTTPS<->SSH fallback chain. Env: APM_ALLOW_PROTOCOL_FALLBACK=1.

Transport env vars: APM_GIT_PROTOCOL (ssh or https) sets the default initial transport for shorthand deps; APM_ALLOW_PROTOCOL_FALLBACK=1 mirrors --allow-protocol-fallback.

FlagDefaultDescription
--skill NAMEallInstall only named skills from a dependency that exposes selectable skills. Applies to both git-longhand and registry-longhand (id:/registry:) dependencies. Repeatable. For plugin manifests, NAME may be the skill name or manifest path, such as skills/productivity/grill-me. A CLI name that matches no declared skill is an install error; the diagnostic lists the available names. If a previously persisted skills: pin later matches no available source skill, install stays successful but warns with the package, requested names, and available names instead of silently doing nothing. The selection is persisted to apm.yml and apm.lock.yaml only after a successful CLI match. --skill is additive across separate installs: a later apm install <bundle> --skill X adds X to the existing pin (union) rather than replacing it — previously deployed skills are never silently removed. Use --skill '*' to reset to the full bundle; to drop a single skill, edit the skills: list in apm.yml and re-run apm install.
--as ALIASbundle idOverride the log/display label for a local-bundle install. Only valid with a single local-bundle PACKAGE_REF.

An invalid name passed directly with --skill is an install error. A previously persisted skills: selection that no longer matches an available source skill is a warning instead: install succeeds and lists the package, declared request names, and available names. Edit skills: in apm.yml, then run apm install again.

FlagDefaultDescription
--mcp NAMEunsetAdd an MCP server entry to apm.yml and install it. Pair with the flags below or pass an executable after --.
--transport stdio|http|sse|streamable-httpinferredInferred from --url or the post--- argv when omitted.
--url URLunsetEndpoint for http, sse, or streamable-http transports. Scheme must be http or https.
--env KEY=VALUEunsetEnvironment variable for stdio MCP servers. Repeatable.
--header KEY=VALUEunsetHTTP header for remote MCP servers. Repeatable. Requires --url.
--mcp-version VERunsetPin a registry MCP entry to a specific version.
--registry URLhttps://api.mcp.github.comCustom MCP registry URL for resolving --mcp NAME. Persisted to apm.yml. Overrides MCP_REGISTRY_URL. Not valid with --url or a stdio command.
  • Auto-bootstrap. apm install <pkg> with no apm.yml creates a minimal one. Its name comes from the current directory (or home directory for global installs) and falls back to my-project if that derived name is invalid. Bare apm install with no apm.yml exits with a hint to run apm init or apm install <org/repo>.
  • Target persistence on bootstrap. When --target maps to recognized manifest targets, those target(s) are persisted to the new manifest’s targets: field so a later bare apm update redeploys to the same targets without re-specifying --target.
  • One effective target. Package primitives, MCP servers, and LSP servers consume one target decision per invocation: --target > apm.yml targets: > apm config set target ... > auto-detect. A saved target therefore applies to apm install, apm install --mcp, and later apm update runs without another flag.
  • Required service writes fail loudly. If MCP or LSP work is declared but no target can be resolved, install exits non-zero before changing the manifest, package deployment, or native service config. A native MCP/LSP config write failure also exits non-zero with the failed target and a permissions/path next step. A successful direct --mcp add never reports Install interrupted.
  • Diff-aware. Packages whose ref or version changed in apm.yml are re-downloaded automatically. MCP servers with matching config are skipped (already configured); changed config is re-applied (updated).
  • MCP-only lock state. A normal project install creates or updates apm.lock.yaml when apm.yml declares only MCP dependencies, records the resolved MCP configs and targets, and migrates a legacy apm.lock first. Repeating the same install leaves the lockfile and target configs byte-identical. If initial lock creation fails, install exits nonzero and warns with writable-directory and rerun guidance.
  • Lockfile replay and Git ref freshness. Plain and --frozen installs may trust apm.lock.yaml and the local Git cache, reusing the locked commit for unchanged Git dependencies across the full resolved graph. In contrast, apm install --update, apm install --refresh, apm update with or without --force, apm lock --update, and apm outdated establish mutable Git refs from upstream instead of accepting stale refs from a local bare Git cache. APM picks up upstream changes to a transitive package’s apm.yml only when you regenerate the graph — run apm update or apm lock --update. See the lockfile specification for the replay contract.
  • Semver ranges on git deps. ref: accepts semver ranges (^1.2.0, ~1.4, >=2.0 <3, 1.5.x) for git-source deps. APM runs git ls-remote against the dep, picks the highest tag matching the range, and pins the resolved tag plus commit SHA, version, and original constraint in apm.lock.yaml. Subsequent installs replay the lockfile without network; use --update (or change the manifest constraint) to re-resolve. See manage dependencies for the supported syntax.
  • No-op nudge. When the lockfile is already satisfied and nothing needs deploying, install prints [i] Run 'apm update' to check for newer versions. so you know the silent success was not a missed refresh.
  • Frozen mode. With --frozen, install resolves only what is in apm.lock.yaml. A missing lockfile, a direct dependency missing from it, or MCP config state that differs from apm.yml exits 1 before lockfile, target config, deployment, or cache mutation. Run normal apm install to create or repair MCP-only lock state, then retry frozen mode. Add-style invocations (apm install PACKAGE and apm install --mcp NAME) are rejected because they mutate apm.yml. Orphan package lock entries are tolerated; local-path deps are skipped. This is a structural check, not a content check — run apm audit --ci for hash verification.
  • Local .apm/ deployment. After dependencies are integrated, primitives in the project’s own .apm/ directory are deployed to the same targets. Local files win on collision. Skipped at --global and with --only mcp.
  • User-scope root context hint. Compilation stays explicit. After apm install -g, targets with native user-scope instruction files pick up global instructions during install. Targets whose user-scope instruction surface is a root context file require apm compile --global; install prints a one-line [i] hint and writes no root context file.
  • Project-scope root context hint. After apm install, targets that require post-install instruction compilation print a one-line [i] hint when dependency instructions require apm compile. The hint names only the root context files that compile will update.
  • Stale-file cleanup. Files a still-present package previously deployed but no longer produces are removed from the workspace, gated by per-file content hashes recorded in the lockfile (user-edited files are kept with a warning).
  • Enterprise marketplace gate. When installing from a *.ghe.com marketplace, bare cross-repo repo: fields (e.g. repo: owner/repo) are refused before any network request runs, preventing dependency-confusion attacks. Host-qualify the field to proceed: repo: corp.ghe.com/owner/repo for an enterprise dep, or repo: github.com/owner/repo for a declared cross-host dep.
  • Security scan. Source files are scanned for hidden Unicode and other tag-character / bidi-override patterns before deployment. Critical findings block the package; the install exits 1. Use --force to deploy anyway, or run apm audit --strip first to remediate.
  • Diagnostic summary. Output is grouped at the end (collisions, replacements, warnings, errors) instead of inline. Use --verbose to expand individual file paths.
  • Declared plugin components. Every path explicitly listed under a recognized plugin manifest’s agents, skills, commands, or hooks field must resolve inside that plugin root. A missing or escaping path fails before deployment and lockfile commit; remove the declaration or add the component, then reinstall. Omitted fields and empty lists remain valid.
  • Default registry routing. When a default registry is configured (project registries.default in apm.yml or registry.<name>.default true in ~/.apm/config.json), unscoped owner/repo#ref shorthand deps passed to apm install route to the registry instead of GitHub. A #<version> selector is required; omitting it exits 1. The selector may be a semver range (^1.0.0), an exact version (1.2.3), or a non-semver label (main, stable, v1.4.2) — the registry exact-matches non-semver selectors against its published version list. GitHub probe is skipped for these deps; use the git: URL form in apm.yml to force the GitHub path (e.g., - git: https://github.com/owner/repo.git).
Terminal window
apm install
Terminal window
apm install microsoft/apm-sample-package
apm install https://gitlab.com/acme/coding-standards.git
apm install code-review@acme-plugins#v2.0.0
Terminal window
# Stdio server via post-`--` argv
apm install --mcp filesystem -- npx -y @modelcontextprotocol/server-filesystem /workspace
# Registry entry
apm install --mcp io.github.github/github-mcp-server
# Remote HTTP server
apm install --mcp my-api --url https://mcp.example.com --header "Authorization=Bearer ${API_TOKEN}"
Terminal window
apm install --target claude,cursor
apm install --target all,agent-skills
apm install --exclude codex

Install in CI (no interactive prompts, no policy escape)

Section titled “Install in CI (no interactive prompts, no policy escape)”
Terminal window
# Fail fast on any drift; never bypass policy in CI.
apm install --parallel-downloads 8

For a CI workflow that also gates on apm audit --ci, see Enforce in CI.

Terminal window
apm install --dry-run
apm install microsoft/apm-sample-package --dry-run
Terminal window
# Resolve apm.yml + local deps from this directory, but write
# apm_modules/, apm.lock.yaml, and harness files under /tmp/apm-out.
apm install --root /tmp/apm-out --target copilot
# The source tree stays clean; the deploy root holds every artifact.
ls /tmp/apm-out # apm_modules/ apm.lock.yaml .github/ .gitignore

Install a local bundle produced by apm pack

Section titled “Install a local bundle produced by apm pack”
Terminal window
apm install ./build/my-bundle
apm install ./my-bundle.zip --as custom-name
apm install ./my-bundle --target opencode

Install only a subset of skills from a bundle

Section titled “Install only a subset of skills from a bundle”
Terminal window
apm install owner/skill-bundle --skill review
apm install owner/skill-bundle --skill refactor # adds refactor; review is kept (union)
apm install owner/skill-bundle --skill '*' # reset to all skills
CodeMeaning
0Success. All requested dependencies and local content deployed.
1Install failure: security scan blocked a critical finding, auth error, manifest or required MCP/LSP config write error, dependency resolution error, --frozen with a missing lockfile or a direct dependency absent from apm.lock.yaml, any reported install error (the diagnostic summary closes with Installation failed with N error(s)), or unhandled exception. --force does not suppress general install errors. The diagnostic summary names the cause.
2Usage error: no deployment target detectable (no --target, no target(s): in apm.yml, no default target configured via apm config set target <value>, and no harness signal in the project), --ssh and --https both passed, --frozen and --update both passed, --root combined with --global, or a Click flag conflict.
  • --force is dual-purpose. It overwrites locally-authored files on collision and disables the critical-finding block from the built-in security scan. It does not suppress general install errors — any error reported in the diagnostic summary still exits 1 (matches npm / pip / cargo). It does not refresh remote refs — for routine ref updates, run apm update. To remediate findings, prefer apm audit --strip. See Drift and secure by default.
  • Target contraction is reconciled. A narrowed targets: in apm.yml is reconciled on the next non-dry-run install: deployed files, lockfile ownership, and merge-hook config/sidecar entries for the dropped target are cleaned up, even when no dependency itself changed. A package’s own target: / targets: declaration applies an additional restriction within that effective set. See Hooks and commands for the full intersection and merge-hook config/sidecar details. apm lock may refresh the lockfile rows, but it never deletes deployed files from disk.
  • Claude target prompt rewrite. When deploying to .claude/commands/, prompt files with an input: front-matter key are rewritten to Claude’s arguments: shape and ${input:name} placeholders become $name. Argument names must match ^[A-Za-z][\w-]{0,63}$; rejected names are dropped with a warning.
  • MCP env-var passthrough. Copilot CLI and Kiro translate ${env:VAR} and <VAR> to ${VAR} in their MCP configs. Kiro writes .kiro/settings/mcp.json and ~/.kiro/settings/mcp.json with 0o600 permissions. JetBrains Copilot preserves env references as ${env:VAR} in github-copilot/intellij/mcp.json. Plaintext secrets are never written to disk for these runtime-resolved targets; legacy targets resolve placeholders at install time.

Install from a private registry (experimental)

Section titled “Install from a private registry (experimental)”

Enable the feature, configure the registry (in apm.yml and/or ~/.apm/config.json), and run install normally. APM resolves registry-sourced deps alongside git deps:

Terminal window
apm experimental enable registries
# Option A: apm.yml has a registries: block and registry-routed deps
apm install
# Option B: workstation config only (no registries: block in apm.yml)
apm config set registry.corp-main.url https://artifactory.corp.example.com/apm
apm config set registry.corp-main.token eyJ...
apm config set registry.corp-main.default true
apm install
# In CI: use env var for the token, never commit it
APM_REGISTRY_TOKEN_CORP_MAIN=eyJ... apm install --frozen

See Registries for the full setup guide.