You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ai-agents/llms-full.txt
+24-16Lines changed: 24 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -35,16 +35,23 @@
35
35
- [Trade Execution](https://docs.base.org/ai-agents/trading/trade-execution.md) — Execute swaps with wallet-native tools; Flashblocks patterns, fee calibration, and onchain signals
36
36
37
37
### Skills
38
-
- [Skills Overview](https://docs.base.org/ai-agents/skills/index.md) — Install with `npx skills add base/base-skills`; agent picks the right skill automatically
39
-
- [Building with Base Account](https://docs.base.org/ai-agents/skills/base-account/building-with-base-account.md) — Auth, payments, subscriptions, sub-accounts, and gas sponsorship via Base Account SDK
40
-
- [Adding Builder Codes](https://docs.base.org/ai-agents/skills/base-chain/adding-builder-codes.md) — Append ERC-8021 attribution data across Privy, Wagmi, Viem, and standard RPC
41
-
- [Connecting to Base Network](https://docs.base.org/ai-agents/skills/base-chain/connecting-to-base-network.md) — Chain IDs, RPC endpoints, and explorer URLs for Base Mainnet and Sepolia
42
-
- [Deploying Contracts](https://docs.base.org/ai-agents/skills/base-chain/deploying-contracts.md) — Deploy and verify contracts on Base using Foundry, with troubleshooting guidance
43
-
- [Running a Base Node](https://docs.base.org/ai-agents/skills/base-chain/running-a-base-node.md) — Production node setup, hardware requirements, networking ports, and syncing guidance
44
-
- [Convert Farcaster Mini App to App](https://docs.base.org/ai-agents/skills/migrations/convert-farcaster-miniapp-to-app.md) — Automated migration from Farcaster mini app to standard web app
45
-
- [Converting MiniKit to Farcaster](https://docs.base.org/ai-agents/skills/migrations/converting-minikit-to-farcaster.md) — MiniKit to Farcaster migration
46
-
- [Migrating an OnchainKit App](https://docs.base.org/ai-agents/skills/migrations/migrating-an-onchainkit-app.md) — OnchainKit app migration
38
+
- [Skills Overview](https://docs.base.org/ai-agents/skills/index.md) — Installable capabilities: wallets, payments, market data, and swap execution; agent picks the right skill automatically
47
39
40
+
#### Wallets
41
+
- [Bankr](https://docs.base.org/ai-agents/skills/wallets/bankr.md) — Self-custodied wallet across Base, ETH, Solana, Polygon, Unichain; gas sponsored; built-in swap and token launch tools; install via `install the bankr skill from https://github.com/BankrBot/skills`
42
+
- [CDP Agentic Wallet](https://docs.base.org/ai-agents/skills/wallets/cdp-agentic-wallet.md) — Email OTP auth, no private keys in agent context; 7-skill bundle covering auth, fund, send, trade, and x402 search/pay/monetize; install via `npx skills add coinbase/agentic-wallet-skills`
43
+
- [Sponge Wallet](https://docs.base.org/ai-agents/skills/wallets/sponge-wallet.md) — Multi-chain wallet (Base, ETH, Solana) with native x402 proxy, swaps, cross-chain bridges via deBridge, Polymarket/Hyperliquid trading, and banking via Bridge.xyz; register via REST API
44
+
45
+
#### Payments
46
+
- [CDP Payment Skills](https://docs.base.org/ai-agents/skills/payments/cdp-payment-skills.md) — Full x402 loop: `search-for-service` (find APIs), `pay-for-service` (auto-pay 402), `monetize-service` (gate own endpoints); included in CDP Agentic Wallet bundle
47
+
- [Sponge x402](https://docs.base.org/ai-agents/skills/payments/sponge-x402.md) — Sponge's built-in proxy: discover services, sign payment, retry transparently; also creates reusable payment links for your own services; included with Sponge Wallet
48
+
49
+
#### Trading
50
+
- [CoinGecko](https://docs.base.org/ai-agents/skills/trading/coingecko.md) — Live price feeds, market cap, volume, and OHLCV via x402; pay per call in USDC through any wallet skill; no API key or subscription
51
+
- [Alchemy Agentic Gateway](https://docs.base.org/ai-agents/skills/trading/alchemy-agentic-gateway.md) — Token balances, NFT metadata, portfolio data, token prices, decoded tx history at `https://x402.alchemy.com`; authenticated via SIWE, paid per call via x402; install via `npx @alchemy/x402 wallet generate`
52
+
- [Swap Execution](https://docs.base.org/ai-agents/skills/trading/swap-execution.md) — Token swaps via wallet-native tools; Bankr and CDP sponsor gas; Sponge bridges cross-chain via deBridge; all three support preconf simulation before execution
53
+
54
+
#### Base Chain & Migrations
48
55
49
56
## Key Concepts (excerpts)
50
57
@@ -55,7 +62,7 @@ Base gives your AI agent the tools to operate as an independent economic actor:
55
62
- **Payments**: Pay for API access automatically with stablecoins using the x402 pay-per-request protocol
56
63
- **Identity**: Register in the ERC-8004 public directory so other agents and services can discover and verify your agent
57
64
- **Trading**: Use Flashblocks for 200ms preconfirmed state and exposed L1/L2 fees for cost-vs-speed tradeoffs
58
-
- **Skills**: Install structured knowledge packs to give your AI coding assistant deep context on Base APIs
65
+
- **Skills**: Install wallet, payment, data, and swap skills to give your agent ready-to-use onchain capabilities
Skills are installable capabilities that give your AI agent specific onchain functionality — a wallet, payment handling, market data access, or trade execution. Install a skill and your agent knows what to do without any custom integration code.
119
122
120
-
Skills plug into Claude Code, Cursor, Windsurf, and other AI coding assistants. The agent picks the right skill automatically based on what you're building — no prompting required.
Copy file name to clipboardExpand all lines: docs/ai-agents/llms.txt
+15-9Lines changed: 15 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -25,12 +25,18 @@
25
25
- [Trade Execution](https://docs.base.org/ai-agents/trading/trade-execution.md) — Execute token swaps using Flashblocks and Base-specific onchain signals
26
26
27
27
## Skills
28
-
- [Skills Overview](https://docs.base.org/ai-agents/skills/index.md) — Installable knowledge packs that give AI coding assistants deep context on Base APIs
29
-
- [Building with Base Account](https://docs.base.org/ai-agents/skills/base-account/building-with-base-account.md) — Auth, payments, subscriptions, sub-accounts, and gas sponsorship
30
-
- [Adding Builder Codes](https://docs.base.org/ai-agents/skills/base-chain/adding-builder-codes.md) — Append ERC-8021 attribution data to transactions
31
-
- [Connecting to Base Network](https://docs.base.org/ai-agents/skills/base-chain/connecting-to-base-network.md) — Chain IDs, RPC endpoints, and explorer URLs
32
-
- [Deploying Contracts](https://docs.base.org/ai-agents/skills/base-chain/deploying-contracts.md) — Deploy and verify contracts on Base using Foundry
33
-
- [Running a Base Node](https://docs.base.org/ai-agents/skills/base-chain/running-a-base-node.md) — Production node setup, hardware requirements, and syncing guidance
34
-
- [Convert Farcaster Mini App to App](https://docs.base.org/ai-agents/skills/migrations/convert-farcaster-miniapp-to-app.md) — Migrate Farcaster mini apps to standard web apps
35
-
- [Converting MiniKit to Farcaster](https://docs.base.org/ai-agents/skills/migrations/converting-minikit-to-farcaster.md) — MiniKit to Farcaster migration skill
36
-
- [Migrating an OnchainKit App](https://docs.base.org/ai-agents/skills/migrations/migrating-an-onchainkit-app.md) — OnchainKit migration guidance
28
+
- [Skills Overview](https://docs.base.org/ai-agents/skills/index.md) — Installable capabilities that give your AI agent a wallet, payments, market data access, or trade execution
29
+
30
+
### Wallets
31
+
- [Bankr](https://docs.base.org/ai-agents/skills/wallets/bankr.md) — Cross-chain wallet with built-in swaps, gas sponsorship, and token launching (Base, ETH, Solana, Polygon, Unichain)
32
+
- [CDP Agentic Wallet](https://docs.base.org/ai-agents/skills/wallets/cdp-agentic-wallet.md) — Email OTP–authenticated wallet on Base with x402 payments built in
33
+
- [Sponge Wallet](https://docs.base.org/ai-agents/skills/wallets/sponge-wallet.md) — Multi-chain wallet with native x402 proxy, swaps, bridges, and banking
34
+
35
+
### Payments
36
+
- [CDP Payment Skills](https://docs.base.org/ai-agents/skills/payments/cdp-payment-skills.md) — Discover, pay for, and monetize x402 API services via the CDP Agentic Wallet
37
+
- [Sponge x402](https://docs.base.org/ai-agents/skills/payments/sponge-x402.md) — Sponge's built-in x402 proxy — discover and pay for services automatically
38
+
39
+
### Trading
40
+
- [CoinGecko](https://docs.base.org/ai-agents/skills/trading/coingecko.md) — Price feeds, market cap, and OHLCV data via x402 — no API key required
41
+
- [Alchemy Agentic Gateway](https://docs.base.org/ai-agents/skills/trading/alchemy-agentic-gateway.md) — Token balances, NFT metadata, portfolio data, and prices via x402 SIWE auth
42
+
- [Swap Execution](https://docs.base.org/ai-agents/skills/trading/swap-execution.md) — Execute token swaps using wallet-native skills across Bankr, CDP, and Sponge
0 commit comments