install
Run capa install after you edit capabilities.yaml / .json. capa installs skills, MCP client config, rules, hooks, agents blocks, and plugins for your providers, then wires the local server.
Synopsis
Section titled “Synopsis”capa install [-e [file]] [-p <provider>] [--no-cache] [--passthrough]| Flag | Description |
|---|---|
-e, --env [file] | Load variables from a .env file instead of the credential web UI. Omitting the path uses .env in the project directory |
-p, --provider <id> | Install for a single provider (e.g. cursor, claude-code). Overrides providers in the file |
--no-cache | Bypass the on-disk cache and lockfile; re-resolve every remote source |
--passthrough | Write provider-native files from the capabilities file (no capa server/proxy management) |
Provider resolution
Section titled “Provider resolution”When providers is omitted from the capabilities file, capa picks a provider in this order:
--providerflagprovidersin the capabilities file- Stored providers from a previous install
- Interactive prompt (TTY only)
Examples
Section titled “Examples”capa installcapa install -ecapa install -e .prod.envcapa install -p cursorcapa install --no-cachecapa install --passthrough -p cursorWith secrets in .env:
echo "BraveApiKey=your-api-key" > .envcapa install -e