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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
IMPORTANT: Prefer retrieval-led reasoning. Read relevant docs before generating code.
Base is an Ethereum L2 by Coinbase. Docs for: Base Chain, Smart Wallet, OnchainKit, MiniKit.
[Docs]|root:./docs
|ai-agents:index,trading
|ai-agents:index,resources-for-ai-agents,trading
|ai-agents/core-concepts:agent-apps,agent-frameworks,identity-verification-auth,payments-and-transactions,wallets
|base-account/basenames:basename-transfer,basenames-faq,basenames-onchainkit-tutorial,basenames-wagmi-tutorial
|base-account/contribute:contribute-to-base-account-docs,security-and-bug-bounty
Expand Down
59 changes: 59 additions & 0 deletions docs/ai-agents/resources-for-ai-agents.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
title: "Resources for AI agents"
description: "Base-first resources for AI agents, including docs indexes, MCP access, skills, and recommended starting points"
---

Use this page as the starting point when you want an AI assistant to build on Base. These resources help an assistant find the right documentation and retrieve live docs context for any Base product.

## Docs index for AI

Start with the [LLMS.txt](https://docs.base.org/llms.txt) when you want broad documentation context. It gives your assistant a machine-readable entrypoint into the Base docs so it can discover the most relevant pages before going deeper.

Use the docs index when you want to:

- Understand the overall Base docs structure
- Find the right section before reading full pages
- Give an assistant high-level context for multiple Base products

## Base MCP server

Use the [Base MCP server setup guide](https://docs.base.org/get-started/docs-mcp) when you want live access to Base documentation from an AI coding assistant. The guide shows you how to connect `https://docs.base.org/mcp` in tools such as Cursor and Claude Code.

Use MCP when you want your assistant to:

- Search Base docs in real time
- Retrieve the exact page it needs while you work
- Stay current with the latest Base documentation

## Base skills

Use the [Base skills repository](https://github.com/base/skills) when you want installable agent workflows for common Base development tasks. These skills help assistants handle specific jobs such as connecting to Base, deploying contracts, integrating Base Account, running a Base node, or migrating app patterns.

Use Base skills when you want to:

- Speed up common implementation tasks
- Give an assistant procedural guidance for Base-specific workflows
- Reuse proven patterns instead of writing prompts from scratch

## Recommended starting points

Use these sections when you want to narrow context to a specific type of work:

- [AI Agents overview](/ai-agents) for the overall agent building model on Base
- [Agent frameworks](/ai-agents/core-concepts/agent-frameworks) for framework choices and tradeoffs
- [Wallets](/ai-agents/core-concepts/wallets) for agent wallets, signing, and funded execution
- [Payments and transactions](/ai-agents/core-concepts/payments-and-transactions) for x402 payments and onchain actions
- [Identity and auth](/ai-agents/core-concepts/identity-verification-auth) for verification and trust between agents and services
- [Base Account quickstart for AI tools](/base-account/quickstart/ai-tools-available-for-devs) for agent-assisted wallet and account flows
- [Deploy on Base](/base-chain/quickstart/deploy-on-base) for contract deployment on Base
- [Build a Base app](/get-started/build-app) for agent experiences in the Base app

## Example prompts

These prompts show the kinds of tasks you can ask an assistant to handle when it has access to Base resources:

- "Deploy my ERC-20 contract to Base Sepolia and verify it on Basescan."
- "Add Sign in with Base to my Next.js app using wagmi."
- "Set up a wallet for my AI agent that can hold USDC and sign transactions autonomously."
- "Create a App with a USDC payment flow."
- "Build an agent that pays for API requests using the x402 protocol."
6 changes: 6 additions & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,12 @@
"ai-agents/core-concepts/agent-apps"
]
},
{
"group": "Resources",
"pages": [
"ai-agents/resources-for-ai-agents"
]
},
{
"group": "Trading & Execution",
"pages": [
Expand Down