CrewAI Agent Template

Agent

Starter 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

  1. Edit agents.py to define your agents
  2. Edit tasks.py to define your tasks
  3. Edit crew.py to configure the crew
  4. Run with python main.py

Resources

View on GitHub

Related Templates