> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# autify/autify-cli

Install Autify Command Line Interface (CLI) to communicate with Autify. Currently, Windows machine isn't supported.


## Commands

### install

Install Autify Command Line Interface (CLI).


| Parameter | Type | Default | Description |
|---|---|---|---|
| `shell-installer-url` | string | https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash | Install version |

## Executors

### default

A base Docker image should work.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `size` | string | small | Dokcer executer's resource_class |
| `tag` | string | current | Pick a specific cimg/base image variant: https://hub.docker.com/r/cimg/base/tags
 |

## Examples

### install-autify-cli

Install Autify Command Line Interface (CLI).


```yaml
version: '2.1'
orbs:
  autify-cli: autify/autify-cli@2
jobs:
  autify-cli-example:
    executor: autify-cli/default
    steps:
      - autify-cli/install
      - run: autify --version
workflows:
  autify-cli:
    jobs:
      - autify-cli-example
```