CrewAI Agent Template
AgentStarter template for building CrewAI multi-agent systems.
CrewAI Agent Template
Overview
Starter template for building CrewAI multi-agent systems with pre-configured agents, tasks, and crew setup.
Structure
crewai-template/
├── agents.py # Agent definitions
├── tasks.py # Task definitions
├── crew.py # Crew configuration
├── main.py # Entry point
└── tools/ # Custom tools
Quick Start
# Clone the template
git clone https://github.com/crewAIInc/crewAI-examples.git
cd crewAI-examples/template
# Install dependencies
pip install -r requirements.txt
# Run the crew
python main.py
Customization
- Edit
agents.pyto define your agents - Edit
tasks.pyto define your tasks - Edit
crew.pyto configure the crew - Run with
python main.py
