Metadata-Version: 2.4
Name: cova-cli
Version: 0.1.0
Summary: Cova CLI - Monitor your monitoring from the terminal
License-Expression: MIT
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Requires-Dist: typer[all]>=0.12.0
Description-Content-Type: text/markdown

# cova-cli

Monitor your monitoring from the terminal.

## Install

```
pip install cova-cli
```

## Quick Start

```bash
cova login          # authenticate with API token
cova status         # show account & connected tools
cova connect datadog  # connect a monitoring tool
cova analyze        # run monitor analysis
cova scan .         # scan repo for recommendations
cova pr-check       # check git diff for monitoring gaps
```

## CI/CD

```yaml
- run: pip install cova-cli
- run: cova pr-check --json
  env:
    COVA_TOKEN: ${{ secrets.COVA_TOKEN }}
```

## Options

All commands support:
- `--json` - machine-readable JSON output
- `-q` / `--quiet` - minimal output for scripts
