From 81ddbcbd35a1fb1726ef28c0a0850d13df7b7158 Mon Sep 17 00:00:00 2001 From: n0vabyte Date: Mon, 15 Jun 2026 09:19:45 -0400 Subject: [PATCH 1/4] add crewai quick deploy app doc --- docs/marketplace-docs/guides/crewai/index.md | 73 ++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 docs/marketplace-docs/guides/crewai/index.md diff --git a/docs/marketplace-docs/guides/crewai/index.md b/docs/marketplace-docs/guides/crewai/index.md new file mode 100644 index 00000000000..c77a3204c31 --- /dev/null +++ b/docs/marketplace-docs/guides/crewai/index.md @@ -0,0 +1,73 @@ +--- +title: "Deploy CrewAI" +description: "This tutorial will show you how deploy CrewAI as a Quick Deploy App." +published: 2026-06-15 +modified: 2026-03-15 +keywords: ['AI Framework', 'AI', 'AI Agent'] +tags: ["quick deploy apps", "AI Framework", "AI", "AI Agent"] +aliases: ['/products/tools/marketplace/guides/crewai/','/guides/crewai/'] +external_resources: +- '[CrewAI](https://crewai.com)' +- '[CrewAI Documentation](https://docs.crewai.com/en/introduction)' +authors: ["Akamai"] +contributors: ["Akamai"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +marketplace_app_id: 2138475 +marketplace_app_name: "CrewAI" +--- + +CrewAI is an open-source framework for building and orchestrating AI agents that work together as a team to accomplish complex tasks. Instead of relying on a single large language model prompt, CrewAI allows developers to create specialized agents with distinct roles, responsibilities, and goals. These agents can collaborate, delegate work, share information, and execute multi-step workflows autonomously. + +## Deploying a Quick Deploy App + +{{% content "deploy-marketplace-apps-shortguide" %}} + +{{% content "marketplace-verify-standard-shortguide" %}} + +{{< note >}} +**Estimated deployment time:** CrewAI should be fully installed within 5-7 minutes after the Compute Instance has finished provisioning. +{{< /note >}} + +## Configuration Options + +- **Supported distributions:** Ubuntu 24.04 LTS +- **Recommended plan:** All plan types and sizes can be used. + +## CrewAI Options + +{{% content "marketplace-required-limited-user-fields-shortguide" %}} + +{{% content "marketplace-special-character-limitations-shortguide" %}} + +## Getting Started after Deployment + +### Create Your First Crew + +Once the deployment is complete, the `crewai` binary will be installed on the instance. This will allow you to create the first group of agents. + +1. To get started, create an example crew called `research`. + +```command +crewai create crew research +``` + +This command will create a project scaffold with everything that you need to run your agents. To understand more about the project structure, please be sure to reference the CrewAI [documentation](https://docs.crewai.com/en/installation#creating-a-crewai-project). + +1. Install the research crew. This will install the default crew of agents that comes with CrewAI. + +```command +cd research +crewai install --prerelease=allow +``` + +1. To run the agents, simply run the following command. + +```command +crewai run +``` + +Once the command above is executed, all of the agents and tasks will start running. On execution you will be able to see the agent's reasoning and how they perform the tasks assigned to them. + +The default crew for CrewAI allows a group of agents to perform research on AI trends for the year. A markdown file is created highlighting the reseach in bullet form. + +{{% content "marketplace-update-note-shortguide" %}} From 84f51a5fd74df63b8849871988a66577c29cde01 Mon Sep 17 00:00:00 2001 From: n0vabyte Date: Mon, 15 Jun 2026 09:27:50 -0400 Subject: [PATCH 2/4] typo fix --- docs/marketplace-docs/guides/crewai/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marketplace-docs/guides/crewai/index.md b/docs/marketplace-docs/guides/crewai/index.md index c77a3204c31..8ed38992b75 100644 --- a/docs/marketplace-docs/guides/crewai/index.md +++ b/docs/marketplace-docs/guides/crewai/index.md @@ -68,6 +68,6 @@ crewai run Once the command above is executed, all of the agents and tasks will start running. On execution you will be able to see the agent's reasoning and how they perform the tasks assigned to them. -The default crew for CrewAI allows a group of agents to perform research on AI trends for the year. A markdown file is created highlighting the reseach in bullet form. +The default crew for CrewAI allows a group of agents to perform research on AI trends for the year. A Markdown file is created highlighting the research in bullet form. {{% content "marketplace-update-note-shortguide" %}} From 383f5068e3c8933c7ff2239d05ac62d78daba517 Mon Sep 17 00:00:00 2001 From: mniemczy Date: Fri, 26 Jun 2026 11:10:58 +0200 Subject: [PATCH 3/4] Make edits to the CrewAI guide --- docs/marketplace-docs/guides/crewai/index.md | 34 ++++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/marketplace-docs/guides/crewai/index.md b/docs/marketplace-docs/guides/crewai/index.md index 8ed38992b75..0927d50cd2b 100644 --- a/docs/marketplace-docs/guides/crewai/index.md +++ b/docs/marketplace-docs/guides/crewai/index.md @@ -16,7 +16,7 @@ marketplace_app_id: 2138475 marketplace_app_name: "CrewAI" --- -CrewAI is an open-source framework for building and orchestrating AI agents that work together as a team to accomplish complex tasks. Instead of relying on a single large language model prompt, CrewAI allows developers to create specialized agents with distinct roles, responsibilities, and goals. These agents can collaborate, delegate work, share information, and execute multi-step workflows autonomously. +CrewAI is an open source framework for building and orchestrating AI agents that work together as a team to accomplish complex tasks. Instead of relying on a single large language model prompt, CrewAI allows developers to create specialized agents with distinct roles, responsibilities, and goals. These agents can collaborate, delegate work, share information, and execute multi-step workflows autonomously. ## Deploying a Quick Deploy App @@ -43,31 +43,31 @@ CrewAI is an open-source framework for building and orchestrating AI agents that ### Create Your First Crew -Once the deployment is complete, the `crewai` binary will be installed on the instance. This will allow you to create the first group of agents. +Once the deployment is complete, the `crewai` binary is installed on the instance. This allows you to create the first group of agents. 1. To get started, create an example crew called `research`. -```command -crewai create crew research -``` + ```command + crewai create crew research + ``` -This command will create a project scaffold with everything that you need to run your agents. To understand more about the project structure, please be sure to reference the CrewAI [documentation](https://docs.crewai.com/en/installation#creating-a-crewai-project). + This command creates a project scaffold with everything that you need to run your agents. To understand more about the project structure, see the [Crew AI documentation](https://docs.crewai.com/en/installation#creating-a-crewai-project). -1. Install the research crew. This will install the default crew of agents that comes with CrewAI. +2. Install the `research` crew. This installs the default crew of agents that comes with CrewAI. -```command -cd research -crewai install --prerelease=allow -``` + ```command + cd research + crewai install --prerelease=allow + ``` -1. To run the agents, simply run the following command. +3. To run the agents, use the following command. -```command -crewai run -``` + ```command + crewai run + ``` -Once the command above is executed, all of the agents and tasks will start running. On execution you will be able to see the agent's reasoning and how they perform the tasks assigned to them. + Once the command is executed, all of the agents and tasks start running. On execution, you can see the agent's reasoning and how they perform tasks assigned to them. -The default crew for CrewAI allows a group of agents to perform research on AI trends for the year. A Markdown file is created highlighting the research in bullet form. + The default crew for CrewAI allows a group of agents to research AI trends for the year. A Markdown file is created, highlighting the research in a bulleted list. {{% content "marketplace-update-note-shortguide" %}} From e9012858299b4b4931784a7df52c100f3a05a2ae Mon Sep 17 00:00:00 2001 From: mniemczy Date: Fri, 26 Jun 2026 11:38:31 +0200 Subject: [PATCH 4/4] Minor edit in the metadata block --- docs/marketplace-docs/guides/crewai/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marketplace-docs/guides/crewai/index.md b/docs/marketplace-docs/guides/crewai/index.md index 0927d50cd2b..d27b1749c55 100644 --- a/docs/marketplace-docs/guides/crewai/index.md +++ b/docs/marketplace-docs/guides/crewai/index.md @@ -1,6 +1,6 @@ --- title: "Deploy CrewAI" -description: "This tutorial will show you how deploy CrewAI as a Quick Deploy App." +description: "This tutorial will show you how to deploy CrewAI as a Quick Deploy App." published: 2026-06-15 modified: 2026-03-15 keywords: ['AI Framework', 'AI', 'AI Agent']