diff --git a/docs/ar/guides/coding-tools/build-with-ai.mdx b/docs/ar/guides/coding-tools/build-with-ai.mdx
new file mode 100644
index 0000000000..744ad1bf47
--- /dev/null
+++ b/docs/ar/guides/coding-tools/build-with-ai.mdx
@@ -0,0 +1,206 @@
+---
+title: "Build with AI"
+description: "Everything AI coding agents need to build, deploy, and scale with CrewAI — skills, machine-readable docs, deployment, and enterprise features."
+icon: robot
+mode: "wide"
+---
+
+# Build with AI
+
+CrewAI is AI-native. This page brings together everything an AI coding agent needs to build with CrewAI — whether you're Claude Code, Codex, Cursor, Gemini CLI, or any other assistant helping a developer ship crews and flows.
+
+### Supported Coding Agents
+
+
+
+
+
+
+
+
+
+
+ This page is designed to be consumed by both humans and AI assistants. If you're a coding agent, start with **Skills** to get CrewAI context, then use **llms.txt** for full docs access.
+
+
+---
+
+## 1. Skills — Teach Your Agent CrewAI
+
+**Skills** are instruction packs that give coding agents deep CrewAI knowledge — how to scaffold Flows, configure Crews, use tools, and follow framework conventions.
+
+
+
+
+ CrewAI skills are available in the **Claude Code plugin marketplace** — the same distribution channel used by top AI-native companies:
+ ```
+ /plugin marketplace add crewAIInc/skills
+ ```
+
+
+ Works with Claude Code, Codex, Cursor, Gemini CLI, or any coding agent:
+ ```shell
+ npx skills add crewaiinc/skills
+ ```
+ Pulls from the [skills.sh registry](https://skills.sh/crewaiinc/skills).
+
+
+
+
+
+ Use either method above — the Claude Code plugin marketplace or `npx skills add`. Both install the official [crewAIInc/skills](https://github.com/crewAIInc/skills) pack.
+
+
+ The skill pack teaches your agent:
+ - **Flows** — stateful apps, steps, and crew kickoffs
+ - **Crews & Agents** — YAML-first patterns, roles, tasks, delegation
+ - **Tools & Integrations** — search, APIs, MCP servers, and common CrewAI tools
+ - **Project layout** — CLI scaffolds and repo conventions
+ - **Up-to-date patterns** — tracks current CrewAI docs and best practices
+
+
+ Your agent can now scaffold and build CrewAI projects without you re-explaining the framework each session.
+
+
+
+
+
+ How skills work in CrewAI agents — injection, activation, and patterns.
+
+
+ Overview of the crewAIInc/skills pack and what it includes.
+
+
+ Set up AGENTS.md for Claude Code, Codex, Cursor, and Gemini CLI.
+
+
+ Official listing — skills, install stats, and audits.
+
+
+
+---
+
+## 2. llms.txt — Machine-Readable Docs
+
+CrewAI publishes an `llms.txt` file that gives AI assistants direct access to the full documentation in a machine-readable format.
+
+```
+https://docs.crewai.com/llms.txt
+```
+
+
+
+ [`llms.txt`](https://llmstxt.org/) is an emerging standard for making documentation consumable by large language models. Instead of scraping HTML, your agent can fetch a single structured text file with all the content it needs.
+
+ CrewAI's `llms.txt` is **already live** — your agent can use it right now.
+
+
+ Point your coding agent at the URL when it needs CrewAI reference docs:
+
+ ```
+ Fetch https://docs.crewai.com/llms.txt for CrewAI documentation.
+ ```
+
+ Many coding agents (Claude Code, Cursor, etc.) can fetch URLs directly. The file contains structured documentation covering all CrewAI concepts, APIs, and guides.
+
+
+ - **No scraping required** — clean, structured content in one request
+ - **Always up-to-date** — served directly from docs.crewai.com
+ - **Optimized for LLMs** — formatted for context windows, not browsers
+ - **Complements skills** — skills teach patterns, llms.txt provides reference
+
+
+
+---
+
+## 3. Deploy to Enterprise
+
+Go from a local crew to production on **CrewAI AMP** (Agent Management Platform) in minutes.
+
+
+
+ Scaffold and test your crew or flow:
+ ```bash
+ crewai create crew my_crew
+ cd my_crew
+ crewai run
+ ```
+
+
+ Ensure your project structure is ready:
+ ```bash
+ crewai deploy --prepare
+ ```
+ See the [preparation guide](/en/enterprise/guides/prepare-for-deployment) for details on project structure and requirements.
+
+
+ Push to the CrewAI AMP platform:
+ ```bash
+ crewai deploy
+ ```
+ You can also deploy via [GitHub integration](/en/enterprise/guides/deploy-to-amp) or [Crew Studio](/en/enterprise/guides/enable-crew-studio).
+
+
+ Your deployed crew gets a REST API endpoint. Integrate it into any application:
+ ```bash
+ curl -X POST https://app.crewai.com/api/v1/crews//kickoff \
+ -H "Authorization: Bearer $CREWAI_API_KEY" \
+ -H "Content-Type: application/json" \
+ -d '{"inputs": {"topic": "AI agents"}}'
+ ```
+
+
+
+
+
+ Full deployment guide — CLI, GitHub, and Crew Studio methods.
+
+
+ Platform overview — what AMP provides for production crews.
+
+
+
+---
+
+## 4. Enterprise Features
+
+CrewAI AMP is built for production teams. Here's what you get beyond deployment.
+
+
+
+ Detailed execution traces, logs, and performance metrics for every crew run. Monitor agent decisions, tool calls, and task completion in real time.
+
+
+ No-code/low-code interface to create, customize, and deploy crews visually — then export to code or deploy directly.
+
+
+ Stream real-time events from crew executions to your systems. Integrate with Slack, Zapier, or any webhook consumer.
+
+
+ SSO, RBAC, and organization-level controls. Manage who can create, deploy, and access crews across your team.
+
+
+ Publish and share custom tools across your organization. Install community tools from the registry.
+
+
+ Run CrewAI AMP on your own infrastructure. Full platform capabilities with data residency and compliance controls.
+
+
+
+
+
+ AMP is for teams that need to move AI agent workflows from prototypes to production — with observability, access controls, and scalable infrastructure. Whether you're a startup or enterprise, AMP handles the operational complexity so you can focus on building agents.
+
+
+ - **Cloud (app.crewai.com)** — managed by CrewAI, fastest path to production
+ - **Factory (self-hosted)** — run on your own infrastructure for full data control
+ - **Hybrid** — mix cloud and self-hosted based on sensitivity requirements
+
+
+ Sign up at [app.crewai.com](https://app.crewai.com) to see current plans. Enterprise and Factory pricing is available on request.
+
+
+
+
+ Sign up and deploy your first crew to production.
+
diff --git a/docs/docs.json b/docs/docs.json
index af0854be11..e2fe48ff03 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -79,6 +79,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -554,6 +555,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -1029,6 +1031,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -1504,6 +1507,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -1979,6 +1983,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -2454,6 +2459,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -2927,6 +2933,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -3400,6 +3407,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -3874,6 +3882,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -4349,6 +4358,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -4822,6 +4832,7 @@
"group": "Get Started",
"pages": [
"en/introduction",
+ "en/guides/coding-tools/build-with-ai",
"en/skills",
"en/installation",
"en/quickstart"
@@ -5328,6 +5339,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -5786,6 +5798,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -6244,6 +6257,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -6702,6 +6716,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -7160,6 +7175,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -7618,6 +7634,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -8075,6 +8092,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -8532,6 +8550,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -8989,6 +9008,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -9445,6 +9465,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -9901,6 +9922,7 @@
"group": "Começando",
"pages": [
"pt-BR/introduction",
+ "pt-BR/guides/coding-tools/build-with-ai",
"pt-BR/skills",
"pt-BR/installation",
"pt-BR/quickstart"
@@ -10388,6 +10410,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -10858,6 +10881,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -11328,6 +11352,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -11798,6 +11823,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -12268,6 +12294,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -12738,6 +12765,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -13207,6 +13235,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -13676,6 +13705,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -14145,6 +14175,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -14613,6 +14644,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -15081,6 +15113,7 @@
"group": "시작 안내",
"pages": [
"ko/introduction",
+ "ko/guides/coding-tools/build-with-ai",
"ko/skills",
"ko/installation",
"ko/quickstart"
@@ -15580,6 +15613,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -16050,6 +16084,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -16520,6 +16555,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -16990,6 +17026,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -17460,6 +17497,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -17930,6 +17968,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -18399,6 +18438,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -18868,6 +18908,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -19337,6 +19378,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -19805,6 +19847,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
@@ -20273,6 +20316,7 @@
"group": "البدء",
"pages": [
"ar/introduction",
+ "ar/guides/coding-tools/build-with-ai",
"ar/skills",
"ar/installation",
"ar/quickstart"
diff --git a/docs/ko/guides/coding-tools/build-with-ai.mdx b/docs/ko/guides/coding-tools/build-with-ai.mdx
new file mode 100644
index 0000000000..744ad1bf47
--- /dev/null
+++ b/docs/ko/guides/coding-tools/build-with-ai.mdx
@@ -0,0 +1,206 @@
+---
+title: "Build with AI"
+description: "Everything AI coding agents need to build, deploy, and scale with CrewAI — skills, machine-readable docs, deployment, and enterprise features."
+icon: robot
+mode: "wide"
+---
+
+# Build with AI
+
+CrewAI is AI-native. This page brings together everything an AI coding agent needs to build with CrewAI — whether you're Claude Code, Codex, Cursor, Gemini CLI, or any other assistant helping a developer ship crews and flows.
+
+### Supported Coding Agents
+
+
+
+
+
+
+
+
+
+
+ This page is designed to be consumed by both humans and AI assistants. If you're a coding agent, start with **Skills** to get CrewAI context, then use **llms.txt** for full docs access.
+
+
+---
+
+## 1. Skills — Teach Your Agent CrewAI
+
+**Skills** are instruction packs that give coding agents deep CrewAI knowledge — how to scaffold Flows, configure Crews, use tools, and follow framework conventions.
+
+
+
+
+ CrewAI skills are available in the **Claude Code plugin marketplace** — the same distribution channel used by top AI-native companies:
+ ```
+ /plugin marketplace add crewAIInc/skills
+ ```
+
+
+ Works with Claude Code, Codex, Cursor, Gemini CLI, or any coding agent:
+ ```shell
+ npx skills add crewaiinc/skills
+ ```
+ Pulls from the [skills.sh registry](https://skills.sh/crewaiinc/skills).
+
+
+
+
+
+ Use either method above — the Claude Code plugin marketplace or `npx skills add`. Both install the official [crewAIInc/skills](https://github.com/crewAIInc/skills) pack.
+
+
+ The skill pack teaches your agent:
+ - **Flows** — stateful apps, steps, and crew kickoffs
+ - **Crews & Agents** — YAML-first patterns, roles, tasks, delegation
+ - **Tools & Integrations** — search, APIs, MCP servers, and common CrewAI tools
+ - **Project layout** — CLI scaffolds and repo conventions
+ - **Up-to-date patterns** — tracks current CrewAI docs and best practices
+
+
+ Your agent can now scaffold and build CrewAI projects without you re-explaining the framework each session.
+
+
+
+
+
+ How skills work in CrewAI agents — injection, activation, and patterns.
+
+
+ Overview of the crewAIInc/skills pack and what it includes.
+
+
+ Set up AGENTS.md for Claude Code, Codex, Cursor, and Gemini CLI.
+
+
+ Official listing — skills, install stats, and audits.
+
+
+
+---
+
+## 2. llms.txt — Machine-Readable Docs
+
+CrewAI publishes an `llms.txt` file that gives AI assistants direct access to the full documentation in a machine-readable format.
+
+```
+https://docs.crewai.com/llms.txt
+```
+
+
+
+ [`llms.txt`](https://llmstxt.org/) is an emerging standard for making documentation consumable by large language models. Instead of scraping HTML, your agent can fetch a single structured text file with all the content it needs.
+
+ CrewAI's `llms.txt` is **already live** — your agent can use it right now.
+
+
+ Point your coding agent at the URL when it needs CrewAI reference docs:
+
+ ```
+ Fetch https://docs.crewai.com/llms.txt for CrewAI documentation.
+ ```
+
+ Many coding agents (Claude Code, Cursor, etc.) can fetch URLs directly. The file contains structured documentation covering all CrewAI concepts, APIs, and guides.
+
+
+ - **No scraping required** — clean, structured content in one request
+ - **Always up-to-date** — served directly from docs.crewai.com
+ - **Optimized for LLMs** — formatted for context windows, not browsers
+ - **Complements skills** — skills teach patterns, llms.txt provides reference
+
+
+
+---
+
+## 3. Deploy to Enterprise
+
+Go from a local crew to production on **CrewAI AMP** (Agent Management Platform) in minutes.
+
+
+
+ Scaffold and test your crew or flow:
+ ```bash
+ crewai create crew my_crew
+ cd my_crew
+ crewai run
+ ```
+
+
+ Ensure your project structure is ready:
+ ```bash
+ crewai deploy --prepare
+ ```
+ See the [preparation guide](/en/enterprise/guides/prepare-for-deployment) for details on project structure and requirements.
+
+
+ Push to the CrewAI AMP platform:
+ ```bash
+ crewai deploy
+ ```
+ You can also deploy via [GitHub integration](/en/enterprise/guides/deploy-to-amp) or [Crew Studio](/en/enterprise/guides/enable-crew-studio).
+
+
+ Your deployed crew gets a REST API endpoint. Integrate it into any application:
+ ```bash
+ curl -X POST https://app.crewai.com/api/v1/crews//kickoff \
+ -H "Authorization: Bearer $CREWAI_API_KEY" \
+ -H "Content-Type: application/json" \
+ -d '{"inputs": {"topic": "AI agents"}}'
+ ```
+
+
+
+
+
+ Full deployment guide — CLI, GitHub, and Crew Studio methods.
+
+
+ Platform overview — what AMP provides for production crews.
+
+
+
+---
+
+## 4. Enterprise Features
+
+CrewAI AMP is built for production teams. Here's what you get beyond deployment.
+
+
+
+ Detailed execution traces, logs, and performance metrics for every crew run. Monitor agent decisions, tool calls, and task completion in real time.
+
+
+ No-code/low-code interface to create, customize, and deploy crews visually — then export to code or deploy directly.
+
+
+ Stream real-time events from crew executions to your systems. Integrate with Slack, Zapier, or any webhook consumer.
+
+
+ SSO, RBAC, and organization-level controls. Manage who can create, deploy, and access crews across your team.
+
+
+ Publish and share custom tools across your organization. Install community tools from the registry.
+
+
+ Run CrewAI AMP on your own infrastructure. Full platform capabilities with data residency and compliance controls.
+
+
+
+
+
+ AMP is for teams that need to move AI agent workflows from prototypes to production — with observability, access controls, and scalable infrastructure. Whether you're a startup or enterprise, AMP handles the operational complexity so you can focus on building agents.
+
+
+ - **Cloud (app.crewai.com)** — managed by CrewAI, fastest path to production
+ - **Factory (self-hosted)** — run on your own infrastructure for full data control
+ - **Hybrid** — mix cloud and self-hosted based on sensitivity requirements
+
+
+ Sign up at [app.crewai.com](https://app.crewai.com) to see current plans. Enterprise and Factory pricing is available on request.
+
+
+
+
+ Sign up and deploy your first crew to production.
+
diff --git a/docs/pt-BR/guides/coding-tools/build-with-ai.mdx b/docs/pt-BR/guides/coding-tools/build-with-ai.mdx
new file mode 100644
index 0000000000..744ad1bf47
--- /dev/null
+++ b/docs/pt-BR/guides/coding-tools/build-with-ai.mdx
@@ -0,0 +1,206 @@
+---
+title: "Build with AI"
+description: "Everything AI coding agents need to build, deploy, and scale with CrewAI — skills, machine-readable docs, deployment, and enterprise features."
+icon: robot
+mode: "wide"
+---
+
+# Build with AI
+
+CrewAI is AI-native. This page brings together everything an AI coding agent needs to build with CrewAI — whether you're Claude Code, Codex, Cursor, Gemini CLI, or any other assistant helping a developer ship crews and flows.
+
+### Supported Coding Agents
+
+
+
+
+
+
+
+
+
+
+ This page is designed to be consumed by both humans and AI assistants. If you're a coding agent, start with **Skills** to get CrewAI context, then use **llms.txt** for full docs access.
+
+
+---
+
+## 1. Skills — Teach Your Agent CrewAI
+
+**Skills** are instruction packs that give coding agents deep CrewAI knowledge — how to scaffold Flows, configure Crews, use tools, and follow framework conventions.
+
+
+
+
+ CrewAI skills are available in the **Claude Code plugin marketplace** — the same distribution channel used by top AI-native companies:
+ ```
+ /plugin marketplace add crewAIInc/skills
+ ```
+
+
+ Works with Claude Code, Codex, Cursor, Gemini CLI, or any coding agent:
+ ```shell
+ npx skills add crewaiinc/skills
+ ```
+ Pulls from the [skills.sh registry](https://skills.sh/crewaiinc/skills).
+
+
+
+
+
+ Use either method above — the Claude Code plugin marketplace or `npx skills add`. Both install the official [crewAIInc/skills](https://github.com/crewAIInc/skills) pack.
+
+
+ The skill pack teaches your agent:
+ - **Flows** — stateful apps, steps, and crew kickoffs
+ - **Crews & Agents** — YAML-first patterns, roles, tasks, delegation
+ - **Tools & Integrations** — search, APIs, MCP servers, and common CrewAI tools
+ - **Project layout** — CLI scaffolds and repo conventions
+ - **Up-to-date patterns** — tracks current CrewAI docs and best practices
+
+
+ Your agent can now scaffold and build CrewAI projects without you re-explaining the framework each session.
+
+
+
+
+
+ How skills work in CrewAI agents — injection, activation, and patterns.
+
+
+ Overview of the crewAIInc/skills pack and what it includes.
+
+
+ Set up AGENTS.md for Claude Code, Codex, Cursor, and Gemini CLI.
+
+
+ Official listing — skills, install stats, and audits.
+
+
+
+---
+
+## 2. llms.txt — Machine-Readable Docs
+
+CrewAI publishes an `llms.txt` file that gives AI assistants direct access to the full documentation in a machine-readable format.
+
+```
+https://docs.crewai.com/llms.txt
+```
+
+
+
+ [`llms.txt`](https://llmstxt.org/) is an emerging standard for making documentation consumable by large language models. Instead of scraping HTML, your agent can fetch a single structured text file with all the content it needs.
+
+ CrewAI's `llms.txt` is **already live** — your agent can use it right now.
+
+
+ Point your coding agent at the URL when it needs CrewAI reference docs:
+
+ ```
+ Fetch https://docs.crewai.com/llms.txt for CrewAI documentation.
+ ```
+
+ Many coding agents (Claude Code, Cursor, etc.) can fetch URLs directly. The file contains structured documentation covering all CrewAI concepts, APIs, and guides.
+
+
+ - **No scraping required** — clean, structured content in one request
+ - **Always up-to-date** — served directly from docs.crewai.com
+ - **Optimized for LLMs** — formatted for context windows, not browsers
+ - **Complements skills** — skills teach patterns, llms.txt provides reference
+
+
+
+---
+
+## 3. Deploy to Enterprise
+
+Go from a local crew to production on **CrewAI AMP** (Agent Management Platform) in minutes.
+
+
+
+ Scaffold and test your crew or flow:
+ ```bash
+ crewai create crew my_crew
+ cd my_crew
+ crewai run
+ ```
+
+
+ Ensure your project structure is ready:
+ ```bash
+ crewai deploy --prepare
+ ```
+ See the [preparation guide](/en/enterprise/guides/prepare-for-deployment) for details on project structure and requirements.
+
+
+ Push to the CrewAI AMP platform:
+ ```bash
+ crewai deploy
+ ```
+ You can also deploy via [GitHub integration](/en/enterprise/guides/deploy-to-amp) or [Crew Studio](/en/enterprise/guides/enable-crew-studio).
+
+
+ Your deployed crew gets a REST API endpoint. Integrate it into any application:
+ ```bash
+ curl -X POST https://app.crewai.com/api/v1/crews//kickoff \
+ -H "Authorization: Bearer $CREWAI_API_KEY" \
+ -H "Content-Type: application/json" \
+ -d '{"inputs": {"topic": "AI agents"}}'
+ ```
+
+
+
+
+
+ Full deployment guide — CLI, GitHub, and Crew Studio methods.
+
+
+ Platform overview — what AMP provides for production crews.
+
+
+
+---
+
+## 4. Enterprise Features
+
+CrewAI AMP is built for production teams. Here's what you get beyond deployment.
+
+
+
+ Detailed execution traces, logs, and performance metrics for every crew run. Monitor agent decisions, tool calls, and task completion in real time.
+
+
+ No-code/low-code interface to create, customize, and deploy crews visually — then export to code or deploy directly.
+
+
+ Stream real-time events from crew executions to your systems. Integrate with Slack, Zapier, or any webhook consumer.
+
+
+ SSO, RBAC, and organization-level controls. Manage who can create, deploy, and access crews across your team.
+
+
+ Publish and share custom tools across your organization. Install community tools from the registry.
+
+
+ Run CrewAI AMP on your own infrastructure. Full platform capabilities with data residency and compliance controls.
+
+
+
+
+
+ AMP is for teams that need to move AI agent workflows from prototypes to production — with observability, access controls, and scalable infrastructure. Whether you're a startup or enterprise, AMP handles the operational complexity so you can focus on building agents.
+
+
+ - **Cloud (app.crewai.com)** — managed by CrewAI, fastest path to production
+ - **Factory (self-hosted)** — run on your own infrastructure for full data control
+ - **Hybrid** — mix cloud and self-hosted based on sensitivity requirements
+
+
+ Sign up at [app.crewai.com](https://app.crewai.com) to see current plans. Enterprise and Factory pricing is available on request.
+
+
+
+
+ Sign up and deploy your first crew to production.
+