Metadata-Version: 2.4
Name: ai-agent-builder
Version: 1.0.1
Summary: AI Agent Builder: A CLI tool to generate production-ready AI agent projects
Home-page: https://github.com/meridian_mind/ai-agent-builder
Author: Meridian Mind
Author-email: Meridian Mind <contact@meridian-mind.ai>
License: MIT
Project-URL: Homepage, https://github.com/meridian_mind/ai-agent-builder
Keywords: ai,agent,scaffold,template,cli
Classifier: Development Status :: 4 - Beta
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: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# ai-agent-builder

**A CLI tool to generate production-ready AI agent projects** — the fastest way to bootstrap your next AI agent.

[![PyPI version](https://img.shields.io/pypi/v/ai-agent-builder.svg)](https://pypi.org/project/ai-agent-builder/)
[![Python versions](https://img.shields.io/pypi/pyversions/ai-agent-builder.svg)](https://pypi.org/project/ai-agent-builder/)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![PyPI downloads](https://img.shields.io/pypi/dm/ai-agent-builder.svg)](https://pypi.org/project/ai-agent-builder/)

## Features

- **Instant Scaffolding**: Generate a complete AI agent project in seconds
- **Multi-Template**: Support for OpenAI, Gemini, and Local LLaMA agents
- **Production Ready**: Includes all dependencies, prompts, and configuration
- **MIT Licensed**: Free for commercial and personal use

## Installation

```bash
pip install ai-agent-builder
```

## Usage

```bash
# Create a new agent project
ai-agent-builder my-agent --template openai

# Specify output directory
ai-agent-builder chatbot --output ./projects
```

## Quick Start

```bash
# Generate an OpenAI-based agent
ai-agent-builder my-agent

# Install dependencies
cd my-agent && pip install -r requirements.txt

# Run your agent
python main.py
```

## Project Structure

Each generated agent includes:
- `main.py` — Main entry point with CLI support
- `prompts.txt` — Prompt templates for your LLM
- `requirements.txt` — All Python dependencies
- `README.md` — Documentation and setup instructions

## Templates

| Template | Description |
|----------|-------------|
| `default` | A versatile AI agent with text processing |
| `openai` | Powered by OpenAI's GPT models |
| `gemini` | Google's Gemini model integration |
| `llama` | Local LLaMA for privacy-focused processing |

## License

MIT — Free for all use.

---

**Built by [Meridian Mind](https://github.com/meridian_mind/ai-agent-builder)**
