Skip to content

Commit 50936e7

Browse files
authored
Update Skills Section (#1265)
* update skills repo * update llms files
1 parent 406b517 commit 50936e7

21 files changed

+457
-344
lines changed

docs/ai-agents/llms-full.txt

Lines changed: 24 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,23 @@
3535
- [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
3636

3737
### 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
4739

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
4855

4956
## Key Concepts (excerpts)
5057

@@ -55,7 +62,7 @@ Base gives your AI agent the tools to operate as an independent economic actor:
5562
- **Payments**: Pay for API access automatically with stablecoins using the x402 pay-per-request protocol
5663
- **Identity**: Register in the ERC-8004 public directory so other agents and services can discover and verify your agent
5764
- **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
5966

6067
Source: `https://docs.base.org/ai-agents/setup/wallet-setup.md`
6168

@@ -111,10 +118,11 @@ Key patterns:
111118

112119
Source: `https://docs.base.org/ai-agents/skills/index.md`
113120

114-
Install all Base Skills:
115-
116-
```bash
117-
npx skills add base/base-skills
118-
```
121+
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.
119122

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.
123+
Available skill categories:
124+
- **Wallets** — Bankr, CDP Agentic Wallet, Sponge Wallet
125+
- **Payments** — CDP Payment Skills (`search-for-service`, `pay-for-service`, `monetize-service`), Sponge x402 proxy
126+
- **Trading** — CoinGecko price feeds, Alchemy Agentic Gateway, Swap Execution (Bankr/CDP/Sponge)
127+
- **Base Chain** — Builder codes, network config, contract deployment, node ops
128+
- **Migrations** — Farcaster mini app → web app, MiniKit → Farcaster, OnchainKit migration

docs/ai-agents/llms.txt

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@
2525
- [Trade Execution](https://docs.base.org/ai-agents/trading/trade-execution.md) — Execute token swaps using Flashblocks and Base-specific onchain signals
2626

2727
## 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

docs/ai-agents/skills/base-account/building-with-base-account.mdx

Lines changed: 0 additions & 40 deletions
This file was deleted.

docs/ai-agents/skills/base-chain/adding-builder-codes.mdx

Lines changed: 0 additions & 41 deletions
This file was deleted.

docs/ai-agents/skills/base-chain/connecting-to-base-network.mdx

Lines changed: 0 additions & 34 deletions
This file was deleted.

docs/ai-agents/skills/base-chain/deploying-contracts.mdx

Lines changed: 0 additions & 32 deletions
This file was deleted.

docs/ai-agents/skills/base-chain/running-a-base-node.mdx

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)