> CrewAI Multi-Agent
Build collaborative AI agent teams with CrewAI. Roles, tasks, and crew orchestration.
fetch
$
curl "https://skillshub.wtf/skillshub-team/catalog-batch5/crewai-multiagent?format=md"SKILL.md•CrewAI Multi-Agent
CrewAI
Define Agents & Tasks
from crewai import Agent, Task, Crew
researcher = Agent(
role='Research Analyst',
goal='Find comprehensive information on the topic',
backstory='Expert researcher with access to web search',
tools=[search_tool],
llm=llm,
)
writer = Agent(
role='Content Writer',
goal='Write engaging content based on research',
backstory='Experienced technical writer',
llm=llm,
)
research_task = Task(description='Research {topic}', agent=researcher, expected_output='Research report')
write_task = Task(description='Write article from research', agent=writer, expected_output='Blog post', context=[research_task])
crew = Crew(agents=[researcher, writer], tasks=[research_task, write_task], verbose=True)
result = crew.kickoff(inputs={'topic': 'AI agents'})
Process types: sequential, hierarchical (manager delegates)
Memory, callbacks, custom tools
> related_skills --same-repo
> Nix Dev Shells with direnv
Auto-activate reproducible dev environments with Nix flakes and direnv.
> Dagger with GitHub Actions
Run Dagger CI/CD pipelines in GitHub Actions for portable, testable builds.
> Bun + Hono API
Build fast APIs with Bun runtime and Hono framework.
> Deno Fresh Framework
Build full-stack web apps with Fresh on Deno. Islands, routes, and zero runtime overhead.