> ## Documentation Index
> Fetch the complete documentation index at: https://docs.capwrapper.com/llms.txt
> Use this file to discover all available pages before exploring further.

# capwrap-cli

> capwrap-cli brings every Capwrapper dashboard action to your terminal — trigger builds, deploy to app stores, check job status, and validate config.

`capwrap-cli` is Capwrapper's official command-line tool. It lets you trigger builds, deploy to the App Store and Google Play, check job status, and validate your configuration file — all without opening the dashboard. Every `capwrap` command maps 1:1 to a dashboard action, so you get the same capabilities in whichever environment you prefer to work in.

The CLI is particularly useful for teams that want to integrate Capwrapper into automated workflows. You can add it to a CI/CD pipeline so builds are triggered and deployed on every push, with no manual steps required.

## Prerequisites

Before installing, confirm your environment meets these requirements:

* **Node.js v16 or later** — check with `node --version`
* **npm v7 or later** — check with `npm --version`

## Quick install

```bash theme={null}
npm install -g capwrap-cli
```

Verify the installation:

```bash theme={null}
capwrap --version
```

## Explore the CLI

<CardGroup cols={3}>
  <Card title="Installation" icon="download" href="/cli/installation">
    Install capwrap-cli globally or as a project dependency, then authenticate with your API key.
  </Card>

  <Card title="Commands" icon="terminal" href="/cli/commands">
    Full reference for every capwrap command — auth, builds, deploy, validate, and more.
  </Card>

  <Card title="CI/CD integration" icon="git-branch" href="/cli/ci-cd">
    Automate builds and deployments with GitHub Actions, GitLab CI, and other pipelines.
  </Card>
</CardGroup>
