Metadata-Version: 2.4
Name: ai-commander
Version: 0.1.0
Summary: CLI framework orchestration and AI-powered command execution
Project-URL: Homepage, https://github.com/masa/commander
Project-URL: Repository, https://github.com/masa/commander
Author: Masa
License-Expression: MIT
License-File: LICENSE
Keywords: ai,cli,command,orchestration
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: aiofiles>=24.0.0
Requires-Dist: anthropic>=0.40.0
Requires-Dist: fastapi>=0.100.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: prompt-toolkit>=3.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: uvicorn>=0.20.0
Provides-Extra: dev
Requires-Dist: mypy>=1.10.0; extra == 'dev'
Requires-Dist: pre-commit>=3.7.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: requests>=2.31.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Provides-Extra: oauth
Requires-Dist: authlib>=1.3.0; extra == 'oauth'
Requires-Dist: httpx-oauth>=0.13.0; extra == 'oauth'
Description-Content-Type: text/markdown

# Commander

CLI framework orchestration and AI-powered command execution.

> **Note**: This project was extracted from [claude-mpm](https://github.com/masa/claude-mpm) to serve as a standalone CLI framework.

## Installation

```bash
# Basic installation
pip install ai-commander

# With OAuth support
pip install ai-commander[oauth]

# Development installation
pip install -e ".[dev]"
```

## Usage

```bash
# Run commander
commander --help
```

## Development

### Setup

```bash
# Clone the repository
git clone https://github.com/masa/commander.git
cd commander

# Create virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install with dev dependencies
pip install -e ".[dev]"

# Install pre-commit hooks
pre-commit install
```

### Running Tests

```bash
# Run tests with coverage
pytest

# Run specific test file
pytest tests/test_example.py -v
```

### Code Quality

```bash
# Run linter
ruff check src/ tests/

# Run formatter
ruff format src/ tests/

# Run type checker
mypy src/
```

## License

MIT License - see [LICENSE](LICENSE) for details.
