$npx -y skills add basezh/agent-skills-on-base --skill coinbase-agentic-walletAgent Skills for crypto wallet operations. These skills enable AI agents to authenticate, send USDC, trade tokens and more using the [awal](https://www.npmjs.com/package...
| 1 | # Coinbase Agentic Wallet Skills |
| 2 | |
| 3 | [Agent Skills](https://agentskills.io) for crypto wallet operations. These skills enable AI agents to authenticate, send USDC, trade tokens and more using the [`awal`](https://www.npmjs.com/package/awal) CLI. |
| 4 | |
| 5 | ## Available Skills |
| 6 | |
| 7 | | Skill | Description | |
| 8 | | ------------------------------------------------------------ | -------------------------------------------------------------- | |
| 9 | | [authenticate-wallet](./skills/authenticate-wallet/SKILL.md) | Sign in to the wallet via email OTP | |
| 10 | | [fund](./skills/fund/SKILL.md) | Add money to the wallet via Coinbase Onramp | |
| 11 | | [send-usdc](./skills/send-usdc/SKILL.md) | Send USDC to Ethereum addresses or ENS names | |
| 12 | | [trade](./skills/trade/SKILL.md) | Swap/trade tokens on Base (USDC, ETH, WETH) | |
| 13 | | [search-for-service](./skills/search-for-service/SKILL.md) | Search the x402 bazaar for paid API services | |
| 14 | | [pay-for-service](./skills/pay-for-service/SKILL.md) | Make paid API requests via x402 | |
| 15 | | [monetize-service](./skills/monetize-service/SKILL.md) | Build and deploy a paid API that other agents can use via x402 | |
| 16 | | [query-onchain-data](./skills/query-onchain-data/SKILL.md) | Query onchain data on Base using the CDP SQL API via x402 | |
| 17 | |
| 18 | ## Installation |
| 19 | |
| 20 | Install with [Vercel's Skills CLI](https:/skills.sh): |
| 21 | |
| 22 | ```bash |
| 23 | npx skills add coinbase/agentic-wallet-skills |
| 24 | ``` |
| 25 | |
| 26 | ## Usage |
| 27 | |
| 28 | Skills are automatically available once installed. The agent will use them when relevant tasks are detected. |
| 29 | |
| 30 | **Examples:** |
| 31 | |
| 32 | ```text |
| 33 | Sign-in to my wallet with me@email.com |
| 34 | ``` |
| 35 | |
| 36 | ```text |
| 37 | Send 10 USDC to barmstrong.eth |
| 38 | ``` |
| 39 | |
| 40 | ## Contributing |
| 41 | |
| 42 | To add a new skill: |
| 43 | |
| 44 | 1. Create a folder in `./skills/` with a lowercase, hyphenated name |
| 45 | 2. Add a `SKILL.md` file with YAML frontmatter and instructions |
| 46 | |
| 47 | See the [Agent Skills specification](https://agentskills.io/specification) for the complete format. |
| 48 | |
| 49 | ### Updating the `awal` version |
| 50 | |
| 51 | All skills pin a specific version of the `awal` CLI. When a new version is published to npm, run: |
| 52 | |
| 53 | ```bash |
| 54 | # Make sure you're using Node v22+ |
| 55 | node ./scripts/bump-awal.js |
| 56 | ``` |
| 57 | |
| 58 | This fetches the latest version from the npm registry and updates all skill files automatically. |
| 59 | |
| 60 | ## License |
| 61 | |
| 62 | MIT |