Back to Crewai

CLI

docs/en/concepts/cli.mdx

1.14.5a213.8 KB
Original Source
<Warning> Since release 0.140.0, CrewAI AMP started a process of migrating their login provider. As such, the authentication flow via CLI was updated. Users that use Google to login, or that created their account after July 3rd, 2025 will be unable to log in with older versions of the `crewai` library. </Warning>

Overview

The CrewAI CLI provides a set of commands to interact with CrewAI, allowing you to create, train, run, and manage crews & flows.

Installation

To use the CrewAI CLI, make sure you have CrewAI installed:

shell
pip install crewai

Basic Usage

The basic structure of a CrewAI CLI command is:

shell
crewai [COMMAND] [OPTIONS] [ARGUMENTS]

Available Commands

1. Create

Create a new crew or flow.

shell
crewai create [OPTIONS] TYPE NAME
  • TYPE: Choose between "crew" or "flow"
  • NAME: Name of the crew or flow

Example:

shell
crewai create crew my_new_crew
crewai create flow my_new_flow

2. Version

Show the installed version of CrewAI.

shell
crewai version [OPTIONS]
  • --tools: (Optional) Show the installed version of CrewAI tools

Example:

shell
crewai version
crewai version --tools

3. Train

Train the crew for a specified number of iterations.

shell
crewai train [OPTIONS]
  • -n, --n_iterations INTEGER: Number of iterations to train the crew (default: 5)
  • -f, --filename TEXT: Path to a custom file for training (default: "trained_agents_data.pkl")

Example:

shell
crewai train -n 10 -f my_training_data.pkl

4. Replay

Replay the crew execution from a specific task.

shell
crewai replay [OPTIONS]
  • -t, --task_id TEXT: Replay the crew from this task ID, including all subsequent tasks

Example:

shell
crewai replay -t task_123456

5. Log-tasks-outputs

Retrieve your latest crew.kickoff() task outputs.

shell
crewai log-tasks-outputs

6. Reset-memories

Reset the crew memories (long, short, entity, latest_crew_kickoff_outputs).

shell
crewai reset-memories [OPTIONS]
  • -l, --long: Reset LONG TERM memory
  • -s, --short: Reset SHORT TERM memory
  • -e, --entities: Reset ENTITIES memory
  • -k, --kickoff-outputs: Reset LATEST KICKOFF TASK OUTPUTS
  • -kn, --knowledge: Reset KNOWLEDGE storage
  • -akn, --agent-knowledge: Reset AGENT KNOWLEDGE storage
  • -a, --all: Reset ALL memories

Example:

shell
crewai reset-memories --long --short
crewai reset-memories --all

7. Test

Test the crew and evaluate the results.

shell
crewai test [OPTIONS]
  • -n, --n_iterations INTEGER: Number of iterations to test the crew (default: 3)
  • -m, --model TEXT: LLM Model to run the tests on the Crew (default: "gpt-4o-mini")

Example:

shell
crewai test -n 5 -m gpt-3.5-turbo

8. Run

Run the crew or flow.

shell
crewai run
<Note> Starting from version 0.103.0, the `crewai run` command can be used to run both standard crews and flows. For flows, it automatically detects the type from pyproject.toml and runs the appropriate command. This is now the recommended way to run both crews and flows. </Note> <Note> Make sure to run these commands from the directory where your CrewAI project is set up. Some commands may require additional configuration or setup within your project structure. </Note>

9. Chat

Starting in version 0.98.0, when you run the crewai chat command, you start an interactive session with your crew. The AI assistant will guide you by asking for necessary inputs to execute the crew. Once all inputs are provided, the crew will execute its tasks.

After receiving the results, you can continue interacting with the assistant for further instructions or questions.

shell
crewai chat
<Note> Ensure you execute these commands from your CrewAI project's root directory. </Note> <Note> IMPORTANT: Set the `chat_llm` property in your `crew.py` file to enable this command.
python
@crew
def crew(self) -> Crew:
    return Crew(
        agents=self.agents,
        tasks=self.tasks,
        process=Process.sequential,
        verbose=True,
        chat_llm="gpt-4o",  # LLM for chat orchestration
    )
</Note>

10. Deploy

Deploy the crew or flow to CrewAI AMP.

  • Authentication: You need to be authenticated to deploy to CrewAI AMP. You can login or create an account with:

    shell
    crewai login
    
  • Create a deployment: Once you are authenticated, you can create a deployment for your crew or flow from the root of your localproject.

    shell
    crewai deploy create
    
    • Reads your local project configuration.
    • Prompts you to confirm the environment variables (like OPENAI_API_KEY, SERPER_API_KEY) found locally. These will be securely stored with the deployment on the Enterprise platform. Ensure your sensitive keys are correctly configured locally (e.g., in a .env file) before running this.

11. Organization Management

Manage your CrewAI AMP organizations.

shell
crewai org [COMMAND] [OPTIONS]

Commands:

  • list: List all organizations you belong to
shell
crewai org list
  • current: Display your currently active organization
shell
crewai org current
  • switch: Switch to a specific organization
shell
crewai org switch <organization_id>
<Note> You must be authenticated to CrewAI AMP to use these organization management commands. </Note>
  • Create a deployment (continued):

    • Links the deployment to the corresponding remote GitHub repository (it usually detects this automatically).
  • Deploy the Crew: Once you are authenticated, you can deploy your crew or flow to CrewAI AMP.

    shell
    crewai deploy push
    
    • Initiates the deployment process on the CrewAI AMP platform.
    • Upon successful initiation, it will output the Deployment created successfully! message along with the Deployment Name and a unique Deployment ID (UUID).
  • Deployment Status: You can check the status of your deployment with:

    shell
    crewai deploy status
    

    This fetches the latest deployment status of your most recent deployment attempt (e.g., Building Images for Crew, Deploy Enqueued, Online).

  • Deployment Logs: You can check the logs of your deployment with:

    shell
    crewai deploy logs
    

    This streams the deployment logs to your terminal.

  • List deployments: You can list all your deployments with:

    shell
    crewai deploy list
    

    This lists all your deployments.

  • Delete a deployment: You can delete a deployment with:

    shell
    crewai deploy remove
    

    This deletes the deployment from the CrewAI AMP platform.

  • Help Command: You can get help with the CLI with:

    shell
    crewai deploy --help
    

    This shows the help message for the CrewAI Deploy CLI.

Watch this video tutorial for a step-by-step demonstration of deploying your crew to CrewAI AMP using the CLI.

<iframe className="w-full aspect-video rounded-xl" src="https://www.youtube.com/embed/3EqSV-CYDZA" title="CrewAI Deployment Guide" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen ></iframe>

11. Login

Authenticate with CrewAI AMP using a secure device code flow (no email entry required).

shell
crewai login

What happens:

  • A verification URL and short code are displayed in your terminal
  • Your browser opens to the verification URL
  • Enter/confirm the code to complete authentication

Notes:

  • The OAuth2 provider and domain are configured via crewai config (defaults use login.crewai.com)
  • After successful login, the CLI also attempts to authenticate to the Tool Repository automatically
  • If you reset your configuration, run crewai login again to re-authenticate

12. API Keys

When running crewai create crew command, the CLI will show you a list of available LLM providers to choose from, followed by model selection for your chosen provider.

Once you've selected an LLM provider and model, you will be prompted for API keys.

Available LLM Providers

Here's a list of the most popular LLM providers suggested by the CLI:

  • OpenAI
  • Groq
  • Anthropic
  • Google Gemini
  • SambaNova

When you select a provider, the CLI will then show you available models for that provider and prompt you to enter your API key.

Other Options

If you select "other", you will be able to select from a list of LiteLLM supported providers.

When you select a provider, the CLI will prompt you to enter the Key name and the API key.

See the following link for each provider's key name:

13. Configuration Management

Manage CLI configuration settings for CrewAI.

shell
crewai config [COMMAND] [OPTIONS]

Commands:

  • list: Display all CLI configuration parameters
shell
crewai config list
  • set: Set a CLI configuration parameter
shell
crewai config set <key> <value>
  • reset: Reset all CLI configuration parameters to default values
shell
crewai config reset

Available Configuration Parameters

  • enterprise_base_url: Base URL of the CrewAI AMP instance
  • oauth2_provider: OAuth2 provider used for authentication (e.g., workos, okta, auth0)
  • oauth2_audience: OAuth2 audience value, typically used to identify the target API or resource
  • oauth2_client_id: OAuth2 client ID issued by the provider, used during authentication requests
  • oauth2_domain: OAuth2 provider's domain (e.g., your-org.auth0.com) used for issuing tokens

Examples

Display current configuration:

shell
crewai config list

Example output:

SettingValueDescription
enterprise_base_urlhttps://app.crewai.comBase URL of the CrewAI AMP instance
org_nameNot setName of the currently active organization
org_uuidNot setUUID of the currently active organization
oauth2_providerworkosOAuth2 provider (e.g., workos, okta, auth0)
oauth2_audienceclient_01YYYAudience identifying the target API/resource
oauth2_client_idclient_01XXXOAuth2 client ID issued by the provider
oauth2_domainlogin.crewai.comProvider domain (e.g., your-org.auth0.com)

Set the enterprise base URL:

shell
crewai config set enterprise_base_url https://my-enterprise.crewai.com

Set OAuth2 provider:

shell
crewai config set oauth2_provider auth0

Set OAuth2 domain:

shell
crewai config set oauth2_domain my-company.auth0.com

Reset all configuration to defaults:

shell
crewai config reset
<Tip> After resetting configuration, re-run `crewai login` to authenticate again. </Tip>

14. Trace Management

Manage trace collection preferences for your Crew and Flow executions.

shell
crewai traces [COMMAND]

Commands:

  • enable: Enable trace collection for crew/flow executions
shell
crewai traces enable
  • disable: Disable trace collection for crew/flow executions
shell
crewai traces disable
  • status: Show current trace collection status
shell
crewai traces status

How Tracing Works

Trace collection is controlled by checking three settings in priority order:

  1. Explicit flag in code (highest priority - can enable OR disable):

    python
    crew = Crew(agents=[...], tasks=[...], tracing=True)   # Always enable
    crew = Crew(agents=[...], tasks=[...], tracing=False)  # Always disable
    crew = Crew(agents=[...], tasks=[...])                 # Check lower priorities (default)
    
    • tracing=True will always enable tracing (overrides everything)
    • tracing=False will always disable tracing (overrides everything)
    • tracing=None or omitted will check lower priority settings
  2. Environment variable (second priority):

    env
    CREWAI_TRACING_ENABLED=true
    
    • Checked only if tracing is not explicitly set to True or False in code
    • Set to true or 1 to enable tracing
  3. User preference (lowest priority):

    shell
    crewai traces enable
    
    • Checked only if tracing is not set in code and CREWAI_TRACING_ENABLED is not set to true
    • Running crewai traces enable is sufficient to enable tracing by itself
<Note> **To enable tracing**, use any one of these methods: - Set `tracing=True` in your Crew/Flow code, OR - Add `CREWAI_TRACING_ENABLED=true` to your `.env` file, OR - Run `crewai traces enable`

To disable tracing, use any ONE of these methods:

  • Set tracing=False in your Crew/Flow code (overrides everything), OR
  • Remove or set to false the CREWAI_TRACING_ENABLED env var, OR
  • Run crewai traces disable

Higher priority settings override lower ones.

</Note> <Tip> For more information about tracing, see the [Tracing documentation](/observability/tracing). </Tip> <Tip> CrewAI CLI handles authentication to the Tool Repository automatically when adding packages to your project. Just append `crewai` before any `uv` command to use it. E.g. `crewai uv add requests`. For more information, see [Tool Repository](https://docs.crewai.com/enterprise/features/tool-repository) docs. </Tip> <Note> Configuration settings are stored in `~/.config/crewai/settings.json`. Some settings like organization name and UUID are read-only and managed through authentication and organization commands. Tool repository related settings are hidden and cannot be set directly by users. </Note>