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 +