Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 6 additions & 15 deletions app/_components/landing-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,23 +134,14 @@ export function LandingPage() {
}}
>
<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">
Give your AI IDE access to Arcade.dev's documentation using our
llms.txt files (
<a className="text-primary hover:underline" href="/llms.txt">
short llms.txt
</a>
,{" "}
<a className="text-primary hover:underline" href="/llms-full.txt">
llms-full.txt
</a>
), or use{" "}
<a
Don't write code yourself - let your AI IDE do it for you! <br />
<Link
className="text-primary hover:underline"
href="https://context7.com/arcadeai/docs"
href="/home/agentic-development"
>
context7
</a>
.
Learn how to give your coding agents access to Arcade.dev's
documentation
</Link>
</div>
</motion.div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions app/en/home/_meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ export const meta: MetaRecord = {
faq: {
title: "FAQ",
},
"agentic-development": {
title: "Agentic Development",
},
changelog: {
title: "Changelog",
},
Expand Down
29 changes: 29 additions & 0 deletions app/en/home/agentic-development/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: "Agentic Development"
description: "Learn how to speed up your development with agents in your IDEs"
---

# Agentic Development

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.

## LLMs.txt

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).

Our LLMs.txt files are available in two versions:

- [`https://docs.arcade.dev/llms.txt`](https://docs.arcade.dev/llms.txt) - a short version of the documentation index
- [`https://docs.arcade.dev/llms-full.txt`](https://docs.arcade.dev/llms-full.txt) - a full version of the documentation

![LLMs.txt example](/images/agentic-development/cursor-llms-txt.png)

Learn more about the LLMs.txt file format [here](https://llmstxt.org/).

## Context7

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

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).

Learn more about Context7 [here](https://context7.com/).
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.