agents-crewai
Installation
SKILL.md
CrewAI
Design and run role-based agent teams using CrewAI.
Quick Start
- Define agents with clear roles and goals.
- Define tasks with explicit expected outputs.
- Choose a process (sequential vs. hierarchical).
- Run the crew and inspect outputs.
Minimal Example
from crewai import Agent, Task, Crew, Process
researcher = Agent(role="Researcher", goal="Find 5 key trends")
writer = Agent(role="Writer", goal="Summarize findings")
research = Task(description="Research AI agents", expected_output="5 bullets", agent=researcher)
write = Task(description="Write a summary", expected_output="Short memo", agent=writer, context=[research])