From 2771c02f45f3b84a331bfc6c00b512cfe728ebcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Fri, 26 Jun 2026 05:10:55 -0300 Subject: [PATCH] docs: improve coding agent setup CTA (#6344) * docs: improve coding agent setup CTA * docs: move home CTA to published index * docs: address CTA review feedback --- docs/edge/en/installation.mdx | 108 ++++++++++++++++++++++------ docs/index.mdx | 130 +++++++++++++++++++++++++++++++++- 2 files changed, 212 insertions(+), 26 deletions(-) diff --git a/docs/edge/en/installation.mdx b/docs/edge/en/installation.mdx index 66f80d248..381b92c8a 100644 --- a/docs/edge/en/installation.mdx +++ b/docs/edge/en/installation.mdx @@ -5,15 +5,49 @@ icon: wrench mode: "wide" --- -### Watch: Building CrewAI Agents & Flows with Coding Agent Skills +
+
+

+ Coding agent setup +

+

Set up CrewAI in your coding agent

+

+ Copy a ready-to-paste setup prompt for Claude Code, Codex, Cursor, or any coding agent. It installs the official CrewAI skills, checks the CLI, and points the agent at the right docs before it edits code. +

+
-Install our coding agent skills (Claude Code, Codex, ...) to quickly get your coding agents up and running with CrewAI. - - + const button = event.currentTarget; + const resetTimeout = button.dataset.resetTimeout; + if (resetTimeout) { + window.clearTimeout(Number(resetTimeout)); + } + try { + await navigator.clipboard.writeText(prompt); + button.textContent = "Copied"; + } catch { + button.textContent = "Copy failed"; + } finally { + button.dataset.resetTimeout = String(window.setTimeout(() => { + button.textContent = "Copy agent setup prompt"; + delete button.dataset.resetTimeout; + }, 1600)); + } + }} + > + Copy agent setup prompt + + + View coding-agent guide + +
+ + +### Watch: Building CrewAI Agents & Flows with Coding Agent Skills diff --git a/docs/index.mdx b/docs/index.mdx index ff6466f27..2afb9373a 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -27,9 +27,133 @@ mode: "wide"
- Get started - View changelog - API Reference + + Get started + + + + Coding-agent guide + + + API Reference +