Metadata-Version: 2.4
Name: chatops
Version: 0.1.0
Summary: Command line toolkit for operations teams
Author: Franck Kengne
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.9
Requires-Dist: rich>=13

# chatops-toolkit

A command line toolkit for operations teams built with [Typer](https://typer.tiangolo.com/).

## Installation

Install from PyPI:

```bash
pip install chatops-toolkit
```

## Usage

Invoke the CLI with the installed entry point:

```bash
chatops-toolkit
```

You can also run the package directly:

```bash
python -m chatops
```

### Suggest a CLI Command

The package exposes `suggest_command` to map natural language requests to a CLI command:

```python
from chatops import suggest_command

cmd = suggest_command("restart app on prod")
print(cmd)
```

### Latest CVEs

Display high or critical CVEs published in the last week:

```bash
python -m chatops cve latest
```
