Skip to content
Open
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 docs/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ AI agents can use Base skills to perform onchain actions directly from their too
Install Base skills for your AI assistant:

```
npx skills add base/base-skills
npx skills add base/skills --skill base-mcp
```

## Compact Docs Index
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Already registered? Calling this endpoint again with the same wallet address ret
If you're using an AI coding tool (Claude Code, Cursor, Codex), install the Base skills package and let the skill handle registration end-to-end:

```bash Terminal
npx skills add base/base-skills
npx skills add base/skills --skill base-mcp
```

Then ask your agent: **"Register my agent for a builder code on Base.dev."**
Expand Down
2 changes: 1 addition & 1 deletion docs/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ const client = createPublicClient({ chain: base, transport: http() })

## Optional
- [Base MCP server](https://docs.base.org/mcp): Direct AI access to Base documentation
- [Base skills](https://github.com/base/skills): Installable agent skills (`npx skills add base/base-skills`)
- [Base skills](https://github.com/base/skills): Installable agent skills (`npx skills add base/skills --skill base-mcp`)
- [Index (llms.txt)](https://docs.base.org/llms.txt): Strict-spec section index without the full-context extras

<!-- LLMS_AUTOGEN_END -->
2 changes: 1 addition & 1 deletion docs/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -507,5 +507,5 @@

## Optional
- [Base MCP server](https://docs.base.org/mcp): Direct AI access to Base documentation
- [Base skills](https://github.com/base/skills): Installable agent skills (`npx skills add base/base-skills`)
- [Base skills](https://github.com/base/skills): Installable agent skills (`npx skills add base/skills --skill base-mcp`)
- [Full context (llms-full.txt)](https://docs.base.org/llms-full.txt): Same index plus cross-cutting concept guides
2 changes: 1 addition & 1 deletion scripts/agents.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const CONFIG = {
docsUrl: 'https://docs.base.org',
mcpUrl: 'https://docs.base.org/mcp',
skillsRepoUrl: 'https://github.com/base/skills',
skillsInstallCmd: 'npx skills add base/base-skills',
skillsInstallCmd: 'npx skills add base/skills --skill base-mcp',
};

function discoverFeaturedPages() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/llms.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const CONFIG = {
docsUrl: 'https://docs.base.org',
mcpUrl: 'https://docs.base.org/mcp',
skillsRepoUrl: 'https://github.com/base/skills',
skillsInstallCmd: 'npx skills add base/base-skills',
skillsInstallCmd: 'npx skills add base/skills --skill base-mcp',

projectTitle: 'Base Documentation',
fullProjectTitle: 'Base Documentation — Full Context',
Expand Down