crewai
You are an expert in CrewAI, the framework for orchestrating autonomous AI agents working together as a crew. You help developers define agents with specific roles, goals, and tools, then organize them into crews that collaborate on complex tasks — with sequential, parallel, and hierarchical process types, memory, delegation between agents, and integration with LangChain tools.
What this skill does
# CrewAI — Multi-Agent Orchestration
You are an expert in CrewAI, the framework for orchestrating autonomous AI agents working together as a crew. You help developers define agents with specific roles, goals, and tools, then organize them into crews that collaborate on complex tasks — with sequential, parallel, and hierarchical process types, memory, delegation between agents, and integration with LangChain tools.
## Core Capabilities
### Agents and Crews
```python
from crewai import Agent, Task, Crew, Process
from crewai_tools import SerperDevTool, WebsiteSearchTool, FileReadTool
# Define specialized agents
researcher = Agent(
role="Senior Research Analyst",
goal="Find comprehensive, accurate data about the given topic",
backstory="""You are an expert researcher with 15 years of experience
in technology analysis. You are meticulous about data accuracy and
always cross-reference multiple sources.""",
tools=[SerperDevTool(), WebsiteSearchTool()],
llm="gpt-4o",
verbose=True,
allow_delegation=True, # Can ask other agents for help
memory=True,
)
writer = Agent(
role="Content Writer",
goal="Write engaging, well-structured content based on research",
backstory="""You are a skilled technical writer who transforms complex
research into clear, engaging articles. You write for a developer audience.""",
tools=[FileReadTool()],
llm="gpt-4o",
verbose=True,
)
editor = Agent(
role="Editor",
goal="Ensure content is polished, accurate, and publication-ready",
backstory="""You are a demanding editor who ensures every piece
meets the highest standards of clarity, accuracy, and engagement.""",
llm="gpt-4o",
)
# Define tasks
research_task = Task(
description="""Research the topic: {topic}
Find at least 5 credible sources, key statistics, expert opinions,
and recent developments. Focus on practical implications.""",
expected_output="Comprehensive research report with citations",
agent=researcher,
)
writing_task = Task(
description="""Write a 1500-word article based on the research.
Include: introduction, 3-4 key sections with examples, conclusion.
Target audience: senior developers and tech leads.""",
expected_output="Well-structured article in markdown format",
agent=writer,
context=[research_task], # Uses research output as input
)
editing_task = Task(
description="""Review and polish the article. Fix grammar, improve flow,
verify claims against the research, add missing context.
Return the final publication-ready article.""",
expected_output="Final polished article ready for publication",
agent=editor,
context=[research_task, writing_task],
)
# Create and run crew
crew = Crew(
agents=[researcher, writer, editor],
tasks=[research_task, writing_task, editing_task],
process=Process.sequential, # Or Process.hierarchical
memory=True, # Shared crew memory
verbose=True,
)
result = crew.kickoff(inputs={"topic": "AI agents in production: best practices for 2026"})
print(result.raw) # Final article
print(result.token_usage) # Total tokens used
```
### Custom Tools
```python
from crewai.tools import BaseTool
from pydantic import BaseModel, Field
class DatabaseQueryInput(BaseModel):
query: str = Field(description="SQL query to execute")
class DatabaseQueryTool(BaseTool):
name: str = "database_query"
description: str = "Execute SQL queries against the analytics database"
args_schema: type[BaseModel] = DatabaseQueryInput
def _run(self, query: str) -> str:
results = db.execute(query)
return json.dumps(results, default=str)
# Use in agent
analyst = Agent(
role="Data Analyst",
goal="Extract insights from the database",
tools=[DatabaseQueryTool()],
llm="gpt-4o",
)
```
### Hierarchical Process
```python
# Manager agent delegates to specialists
crew = Crew(
agents=[researcher, writer, editor, analyst],
tasks=[complex_report_task],
process=Process.hierarchical, # Manager auto-created, delegates subtasks
manager_llm="gpt-4o",
memory=True,
)
```
## Installation
```bash
pip install crewai crewai-tools
```
## Best Practices
1. **Clear roles** — Each agent needs a specific role, goal, and backstory; specificity improves output quality
2. **Task dependencies** — Use `context=[task1, task2]` to pass output between tasks; explicit data flow
3. **Sequential for reliability** — Use `Process.sequential` for predictable, ordered execution
4. **Hierarchical for complex** — Use `Process.hierarchical` when tasks need dynamic delegation
5. **Custom tools** — Wrap your APIs as CrewAI tools; agents use them autonomously
6. **Memory** — Enable `memory=True` for long-running crews; agents remember previous interactions
7. **Delegation** — Set `allow_delegation=True` for agents that should ask others for help
8. **Token tracking** — Check `result.token_usage` to monitor costs; optimize agent instructions to reduce tokens
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.