Resources
CrewAI APIs and the CLI move quickly — prefer the official docs. This page lists primary docs, related courses on this site, and coding-agent skills.
Official
Coding agents:
Related courses on this site
Tutorial index
- CrewAI Tutorial
- Introduction
- Installation
- Quick Start
- Agents
- Tasks
- Crews and Processes
- Tools
- Flows
- Memory
- Practical Examples
CLI cheat sheet
Model IDs are provider/model-id (e.g. openai/gpt-4o-mini). Tools extra: pip install 'crewai[tools]' or uv add 'crewai[tools]'.
Python version follows the install page: currently >=3.10 and <3.14. Flow decorators follow the concepts page: @start, @listen, @router, or_, and_, @persist, @human_feedback. Classic Crew scaffolds also use @CrewBase / @agent / @task / @crew — do not put those on a Flow class.
Contribute
Part of Kenhuang Academy. When upstream APIs change, open an issue or PR and update both docs/zh/crewai/ and docs/en/crewai/.