Metadata-Version: 2.4
Name: multi-agent-builder
Version: 1.0.0
Summary: CLI tool for scaffolding AI agent projects — choose a template, scaffold a working agent template with tool registry, config, and main loop.
Author: Revenue Worker
License: MIT
Keywords: ai,agent,scaffold,cli,template
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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 :: Code Generators
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Multi Agent Builder

A Python CLI tool for scaffolding AI agent projects. Choose a template, then generate a working agent template with tool registry, config, and main loop.

## Installation

```bash
pip install multi-agent-builder
```

## Usage

### List available templates

```bash
python -m multi_agent_builder list
```

### Generate a new agent project

```bash
python -m multi_agent_builder generate [template] [project_name]
```

### API usage

```python
from multi_agent_builder import generate_agent_project

generate_agent_project(template='basic', project_name='my-agent')
```

## Templates

- **basic**: Minimal agent with a main loop and tools
- **advanced**: Agent with memory, tools, and event loop

## License

MIT
