mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-07 03:28:29 +00:00
Add the new lib/cli package skeleton with pyproject.toml, README, and __init__.py. Register it as a uv workspace member and update root linting, mypy, bandit, and pytest config to include the new package paths.
16 lines
250 B
Markdown
16 lines
250 B
Markdown
# crewai-cli
|
|
|
|
CLI for CrewAI - scaffold, run, deploy and manage AI agent crews without installing the full framework.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pip install crewai-cli
|
|
```
|
|
|
|
Or install alongside the full framework:
|
|
|
|
```bash
|
|
pip install crewai[cli]
|
|
```
|