Skip to content

Commit 2391a37

Browse files
authored
better docs for agentic development (#456)
* better docs for agentic development * clarify
1 parent 0b7b7e9 commit 2391a37

File tree

4 files changed

+38
-15
lines changed

4 files changed

+38
-15
lines changed

app/_components/landing-page.tsx

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -134,23 +134,14 @@ export function LandingPage() {
134134
}}
135135
>
136136
<div className="rounded-lg border border-gray-300 bg-gray-50/50 p-4 text-gray-700 italic backdrop-blur-sm dark:border-white dark:bg-gray-900/50 dark:text-white">
137-
Give your AI IDE access to Arcade.dev's documentation using our
138-
llms.txt files (
139-
<a className="text-primary hover:underline" href="/llms.txt">
140-
short llms.txt
141-
</a>
142-
,{" "}
143-
<a className="text-primary hover:underline" href="/llms-full.txt">
144-
llms-full.txt
145-
</a>
146-
), or use{" "}
147-
<a
137+
Don't write code yourself - let your AI IDE do it for you! <br />
138+
<Link
148139
className="text-primary hover:underline"
149-
href="https://context7.com/arcadeai/docs"
140+
href="/home/agentic-development"
150141
>
151-
context7
152-
</a>
153-
.
142+
Learn how to give your coding agents access to Arcade.dev's
143+
documentation
144+
</Link>
154145
</div>
155146
</motion.div>
156147
</div>

app/en/home/_meta.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ export const meta: MetaRecord = {
144144
faq: {
145145
title: "FAQ",
146146
},
147+
"agentic-development": {
148+
title: "Agentic Development",
149+
},
147150
changelog: {
148151
title: "Changelog",
149152
},
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "Agentic Development"
3+
description: "Learn how to speed up your development with agents in your IDEs"
4+
---
5+
6+
# Agentic Development
7+
8+
Give your AI IDE access to Arcade.dev's documentation using our llms.txt files (short [llms.txt](https://docs.arcade.dev/llms.txt), [llms-full.txt](https://docs.arcade.dev/llms-full.txt)), or use [context7](https://context7.com/arcadeai/docs). This allows Claude Code, Cursor, and other AI IDEs to access the documentation and help you write code.
9+
10+
## LLMs.txt
11+
12+
LLMs.txt is a file format that allows you to give your AI IDE access to Arcade.dev's documentation in a format that can be easily parsed by the LLM. All you need to do is paste in the conent of the file into your IDE's settings, or reference the docs, e.g. via [Cursor's `@docs` annotation](https://cursor.com/docs/context/symbols#docs).
13+
14+
Our LLMs.txt files are available in two versions:
15+
16+
- [`https://docs.arcade.dev/llms.txt`](https://docs.arcade.dev/llms.txt) - a short version of the documentation index
17+
- [`https://docs.arcade.dev/llms-full.txt`](https://docs.arcade.dev/llms-full.txt) - a full version of the documentation
18+
19+
![LLMs.txt example](/images/agentic-development/cursor-llms-txt.png)
20+
21+
Learn more about the LLMs.txt file format [here](https://llmstxt.org/).
22+
23+
## Context7
24+
25+
Context7 is an MCP server designed to provide Large Language Models (LLMs) and AI code editors with up-to-date, version-specific documentation and code examples. It helps prevent AI models from "hallucinating" or providing outdated code by fetching accurate information directly from its knowledge base and injecting it into the LLM's prompt, ensuring more reliable and accurate coding assistance
26+
27+
To use Context7, you first need to add the [Context7 MCP server](https://github.com/upstash/context7) to your editor, and then select the [`arcadeai/docs` project](https://context7.com/arcadeai/docs).
28+
29+
Learn more about Context7 [here](https://context7.com/).
243 KB
Loading

0 commit comments

Comments
 (0)