Metadata-Version: 2.4
Name: cccmd
Version: 0.3.0
Summary: Collective Context Commander - Multi-Agent AI Orchestration Tool
Author-email: Collective Context Team <team@collective-context.org>
License: MIT
Project-URL: Homepage, https://collective-context.org
Project-URL: Documentation, https://collective-context.org/ccc/
Project-URL: Repository, https://github.com/collective-context/ccc.git
Project-URL: Issues, https://github.com/collective-context/ccc/issues
Project-URL: Changelog, https://github.com/collective-context/ccc/blob/main/CHANGELOG.md
Keywords: ai,orchestration,multi-agent,cli,collective-context,aider
Classifier: Development Status :: 4 - Beta
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Requires-Dist: rich>=10.0
Requires-Dist: pydantic>=2.0
Requires-Dist: requests>=2.25.0
Requires-Dist: pyyaml>=6.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Requires-Dist: build>=0.10.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Dynamic: license-file

# CCC Commander (cccmd) - Collective Context Multi-Agent Orchestration

[![PyPI version](https://badge.fury.io/py/cccmd.svg)](https://badge.fury.io/py/cccmd)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Pragmatic multi-agent AI orchestration for the Collective Context ecosystem.

## Installation

### Via pipx (Recommended)
```bash
pipx install cccmd
```

### Via pip
```bash
pip install --user cccmd
```

### From Source (Development)
```bash
git clone https://github.com/collective-context/ccc
cd ccc
pip install -e ".[dev]"
```

## Quick Start

```bash
# Initialize a new CC session
cccmd init my-project

# Create an agent configuration
cccmd agent create --name claude-1 --type aider

# Start orchestration
cccmd orchestrate
```

## Features

- 🎭 Multi-agent orchestration with 4-agent pattern
- 🔄 Session persistence via CONTEXT.md
- 📦 XDG Base Directory compliance
- 🚀 Support for 300+ AI models via OpenRouter
- 🔒 Privacy-first options with self-hosting
- 🎯 Pragmatic hybrid approach (FOSS + selected tools)

## Documentation

Full documentation available at: https://collective-context.org/ccc/

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

## License

MIT - See [LICENSE](LICENSE) file for details.
