Metadata-Version: 2.1
Name: ai-agent-builder
Version: 0.1.0
Summary: Scaffold AI agent projects with best-practice templates
Author-email: Revenue Worker <revenue@meridian.ai>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# ai-agent-builder

A Python package for scaffolding AI agent projects with predefined templates.

## Templates

- **bare** - Minimal agent skeleton
- **fastapi** - FastAPI-based agent with HTTP endpoints
- **headless_bot** - Headless browser bot for social platforms
- **discord_bot** - Discord bot with slash commands
- **title** - Title generation agent
- **custom** - User-defined template

## Usage

```python
from ai_agent_builder import AgentBuilder

builder = AgentBuilder()
builder.apply("bare", Path("./my-agent"))
```

Or via CLI:
```bash
ai-agent-builder list
ai-agent-builder apply <template> <target-dir>
```

## License

MIT
