Metadata-Version: 2.4
Name: djinn-bot-cli
Version: 0.1.0
Summary: Python CLI for djinnbot
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: rich>=13.0.0
Requires-Dist: textual>=0.80.0
Requires-Dist: typer>=0.12.0
Requires-Dist: websockets>=12.0
Provides-Extra: dev
Requires-Dist: pytest-mock>=3.12; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Description-Content-Type: text/markdown

# Djinnbot CLI

Python CLI for the djinnbot event-driven agent orchestration framework.

## Installation

```bash
cd cli
pip install -e .
```

## Usage

```bash
# Show help
djinnbot --help

# Show system status
djinnbot status

# List agents
djinnbot agents --list

# Run a pipeline
djinnbot pipelines --run my-pipeline

# Emit an event
djinnbot events --emit user.message
```

## Development

```bash
# Install in development mode
pip install -e ".[dev]"

# Run with hot reload
python -m djinnbot.main status
```
