Metadata-Version: 2.5
Name: cloudwright-ai-cli
Version: 1.10.0
Summary: CLI for Cloudwright architecture intelligence
Project-URL: Homepage, https://github.com/xmpuspus/cloudwright
Project-URL: Repository, https://github.com/xmpuspus/cloudwright
Project-URL: Issues, https://github.com/xmpuspus/cloudwright/issues
Project-URL: Changelog, https://github.com/xmpuspus/cloudwright/blob/main/CHANGELOG.md
Author: Xavier Puspus
License-Expression: MIT
Keywords: architecture,cli,cloud,terraform
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.12
Requires-Dist: cloudwright-ai<2,>=1.10.0
Requires-Dist: rich<15,>=13.9
Requires-Dist: typer<1,>=0.21
Description-Content-Type: text/markdown

# cloudwright-cli

Command-line interface for [Cloudwright](https://github.com/xmpuspus/cloudwright) architecture intelligence.

## Install

```bash
pip install 'cloudwright-ai[cli]'
```

## Usage

```bash
cloudwright design "3-tier web app on AWS"
cloudwright cost spec.yaml
cloudwright validate spec.yaml --compliance hipaa
cloudwright export spec.yaml --format terraform -o ./infra
cloudwright diff v1.yaml v2.yaml
cloudwright catalog search "4 vcpu 16gb"
cloudwright migrate demo
cloudwright chat
```

## Migration commands

Migration planning and evidence checks run offline. They never copy data, apply infrastructure,
switch traffic, or run a cutover.

```bash
cloudwright migrate packs
cloudwright migrate plan project.yaml -o assessment.yaml
cloudwright migrate verify project.yaml evidence.yaml -o evidence-pack.yaml
cloudwright --json migrate demo
```

`migrate verify` exits with code 2 when blocking evidence fails or is missing. See the
[migration guide](https://github.com/xmpuspus/cloudwright/blob/main/docs/migrations.md) for the
project schema, pack format, Python API, and checked examples.

See the [main project README](https://github.com/xmpuspus/cloudwright) for full documentation.
