MCPcopy Create free account
hub / github.com/crewAIInc/crewAI

github.com/crewAIInc/crewAI

Chat with this repo
repository ↗ · DeepWiki ↗ · release 1.15.18 ↗ · + Follow · compare 18 versions
18,315 symbols 78,584 edges 1,322 files ⚖ MIT 9,096 documented · 50% updated 1d ago1.15.18 · 2026-08-27★ 58,02473 open issues

Browse by type

Functions 14,568 Types & classes 2,943 Endpoints 804
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Open source Multi-AI Agent orchestration framework

crewAIInc%2FcrewAI | Trendshift

Homepage · Open Source · Docs · Start Cloud Trial · Blog · Forum

GitHub Repo stars GitHub forks GitHub issues GitHub pull requests License: MIT

PyPI version PyPI downloads Twitter Follow

Fast and Flexible Multi-Agent Automation Framework

CrewAI is an open-source Python framework with high-level abstractions and low-level APIs for building production-ready multi-agent workflows. It gives developers autonomous agent collaboration through Crews and precise, event-driven control through Flows.

  • CrewAI Crews: Optimize for autonomy and collaborative intelligence with role-based AI agents.
  • CrewAI Flows: Build event-driven automations that combine precise workflow control, single LLM calls, and native support for Crews.

With over 100,000 developers certified through our community courses at learn.crewai.com, CrewAI is rapidly becoming the standard for production-ready agentic automation.

CrewAI AMP Suite

For organizations that need a commercial control plane around CrewAI, CrewAI AMP Suite adds managed deployment, observability, governance, security, and enterprise support.

You can try one part of the suite, the Crew Control Plane, for free.

Crew Control Plane Key Features:

  • Tracing & Observability: Monitor and track your AI agents and workflows in real-time, including metrics, logs, and traces.
  • Unified Control Plane: A centralized platform for managing, monitoring, and scaling your AI agents and workflows.
  • Seamless Integrations: Easily connect with existing enterprise systems, data sources, and cloud infrastructure.
  • Advanced Security: Built-in robust security and compliance measures ensuring safe deployment and management.
  • Actionable Insights: Real-time analytics and reporting to optimize performance and decision-making.
  • 24/7 Support: Dedicated enterprise support to ensure uninterrupted operation and quick resolution of issues.
  • On-premise and Cloud Deployment Options: Deploy CrewAI AMP on-premise or in the cloud, depending on your security and compliance requirements.

CrewAI AMP is designed for enterprises seeking a powerful, reliable solution to transform complex business processes into efficient, intelligent automations.

Table of contents

Build with AI

Using an AI coding agent? Teach it CrewAI best practices in one command:

Claude Code:

/plugin marketplace add crewAIInc/skills
/plugin install crewai-skills@crewai-plugins
/reload-plugins

Four skills that activate automatically when you ask relevant CrewAI questions:

Skill When it runs
getting-started Scaffolding new projects, choosing between LLM.call() / Agent / Crew / Flow, wiring crew.jsonc / main.py
design-agent Configuring agents — role, goal, backstory, tools, LLMs, memory, guardrails
design-task Writing task descriptions, dependencies, structured output (output_pydantic, output_json), human review
ask-docs Querying the live CrewAI docs MCP server for up-to-date API details

Cursor, Codex, Windsurf, and others (skills.sh):

npx skills add crewaiinc/skills

This installs the official CrewAI Skills — structured instructions that teach coding agents how to scaffold Flows, configure Crews, design agents and tasks, and follow CrewAI patterns.

Why CrewAI?

CrewAI Logo

CrewAI unlocks the true potential of multi-agent automation, delivering speed, flexibility, and control through Crews of AI agents and event-driven Flows:

  • Purpose-built architecture: Designed specifically for agent orchestration, with a lightweight Python core and clean primitives for real-world automation.
  • High Performance: Optimized for speed and minimal resource usage, enabling faster execution.
  • Flexible Low-Level Customization: Complete freedom to customize everything from workflows and system architecture to agent behaviors, internal prompts, and execution logic.
  • Ideal for Every Use Case: Proven effective for simple tasks, complex workflows, and production-grade automation.
  • Robust Community: Backed by a rapidly growing community of over 100,000 certified developers offering comprehensive support and resources.

CrewAI empowers developers and teams to build intelligent automations that balance simplicity, flexibility, and production-grade control.

Getting Started

Setup and run your first CrewAI agents by following this tutorial.

CrewAI Getting Started Tutorial

Learning Resources

Learn CrewAI through our comprehensive courses:

Understanding Flows and Crews

CrewAI offers two powerful, complementary approaches that work seamlessly together to build sophisticated AI applications:

  1. Crews: Teams of AI agents with true autonomy and agency, working together to accomplish complex tasks through role-based collaboration. Crews enable:

  2. Natural, autonomous decision-making between agents

  3. Dynamic task delegation and collaboration
  4. Specialized roles with defined goals and expertise
  5. Flexible problem-solving approaches

  6. Flows: Production-ready, event-driven workflows that deliver precise control over complex automations. Flows provide:

  7. Fine-grained control over execution paths for real-world scenarios

  8. Secure, consistent state management between tasks
  9. Clean integration of AI agents with production Python code
  10. Conditional branching for complex business logic

The true power of CrewAI emerges when combining Crews and Flows. This synergy allows you to:

  • Build complex, production-grade applications
  • Balance autonomy with precise control
  • Handle sophisticated real-world scenarios
  • Maintain clean, maintainable code structure

Getting Started with Installation

To get started with CrewAI, follow these simple steps. The full walkthrough lives in the installation guide.

1. Installation

CrewAI requires Python >=3.10 and <3.14. Check your version with:

python3 --version

CrewAI uses UV for dependency management and package handling. If you haven't installed uv yet, install it first.

macOS/Linux:

curl -LsSf https://astral.sh/uv/install.sh | sh

If your system doesn't have curl, you can use wget:

wget -qO- https://astral.sh/uv/install.sh | sh

Windows:

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

If you run into any issues, refer to UV's installation guide.

Then install the CrewAI CLI:

uv tool install crewai

If you encounter a PATH warning, run:

uv tool update-shell

If you encounter the chroma-hnswlib==0.7.6 build error (fatal error C1083: Cannot open include file: 'float.h') on Windows, install Visual Studio Build Tools with Desktop development with C++.

Verify the install:

uv tool list

You should see something like:

crewai v0.102.0
- crewai

To upgrade the global CLI later:

uv tool install crewai --upgrade

This upgrades the global crewai CLI tool only. To upgrade the crewai version inside a project's virtual environment, see Upgrading CrewAI in a project.

2. Setting Up Your Crew

crewai create crew creates a JSON-first crew project. Agents live in agents/*.jsonc, tasks and crew-level settings live in crew.jsonc, and crewai run loads that JSON definition directly.

crewai create crew <project_name>

This command creates a new project folder with the following structure:

my_project/
├── .gitignore
├── .env
├── agents/
│   └── researcher.jsonc
├── crew.jsonc
├── knowledge/
├── pyproject.toml
├── README.md
├── skills/
└── tools/

If you need the older Python/YAML scaffold with crew.py, config/agents.yaml, and config/tasks.yaml, run:

crewai create crew <project_name> --classic

See Using Annotations for the classic pattern.

To customize your project, you can:

  • Modify agents/*.jsonc to define each agent's role, goal, backstory, LLM, tools, and behavior.
  • Modify crew.jsonc to define tasks, process, and input defaults.
  • Add custom tools in tools/ and reference them as "custom:<name>".
  • Add optional knowledge files in knowledge/ and skill files in skills/.
  • Add your environment variables into the .env file.

Use {placeholder} values in agent and task text, then set defaults in crew.jsonc under inputs. When you run crewai run, the CLI prompts for any missing values.

Example of a simple crew with a sequential process:

crewai create crew latest-ai-development
cd latest_ai_development

Then edit the generated files:

agents/researcher.jsonc

{
  "role": "{topic} Senior Data Researcher",
  "goal": "Uncover cutting-edge developments in {topic}",
  "backstory": "You're a seasoned researcher who finds relevant information and presents it clearly.",
  "llm": "openai/gpt-4o",
  "tools": ["SerperDevTool"],
  "settings": {
    "verbose": true
  }
}

agents/reporting_analyst.jsonc

{
  "role": "{topic} Reporting Analyst",
  "goal": "Create detailed reports based on {topic} data analysis and research findings",
  "backstory": "You're a meticulous analyst who turns complex data into clear, concise reports.",
  "llm": "openai/gpt-4o",
  "settings": {
    "verbose": true
  }
}

crew.jsonc

```jsonc { "name": "Latest AI Development", "agents": ["researcher", "reporting_analyst"], "tasks": [ { "name": "research_task", "description": "Conduct thorough research about {topic}. Find recent, relevant information.", "expected_output": "A list with 10 bullet points of the most relevant information about {topic}.", "agent": "researcher" }, { "name": "reporting_task", "description": "Review the research and expand each topic into a full section for a report.", "expected_output": "A markdown report with the main topics, each with a full section of information. No fenced code blocks around the whole document.",

Core symbols most depended-on inside this repo

browse all functions →

Shape

Method 9,221
Function 5,347
Class 2,943
Route 804

Languages

Python100%
TypeScript1%

Modules by API surface

lib/crewai/tests/test_flow.py395 symbols
lib/crewai/tests/test_flow_conversation.py386 symbols
lib/crewai/tests/test_flow_from_definition.py257 symbols
lib/crewai/tests/test_crew.py198 symbols
lib/crewai/tests/tools/test_tool_failure.py181 symbols
lib/crewai/tests/test_flow_definition.py179 symbols
lib/crewai/tests/events/test_event_ordering.py156 symbols
lib/crewai/tests/utilities/test_agent_utils.py152 symbols
lib/crewai/tests/agents/test_agent.py152 symbols
lib/crewai/tests/agents/test_agent_executor.py148 symbols
lib/crewai/tests/utilities/test_events.py134 symbols
lib/crewai/src/crewai/experimental/agent_executor.py128 symbols

Dependencies from manifests, versioned

Pillow12.3.0 · 1×
aiocache0.12.3 · 1×
aiofiles24.1.0 · 1×
aiohttp3.14.3 · 1×
aiosqlite0.21.0 · 1×
appdirs1.4.4 · 1×
authlib1.6.12 · 1×
av13.0.0 · 1×
beautifulsoup44.13.4 · 1×
certifi
chromadb1.1.0 · 1×
crewai1.15.18 · 1×

Datastores touched

(mysql)Database · 1 repos
barDatabase · 1 repos
mydatabaseDatabase · 1 repos
test_databaseDatabase · 1 repos
test_dbDatabase · 1 repos

For agents

$ claude mcp add crewAI \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page