https://github.com/coinbase/agentic-wallet-skills
npx skills add coinbase/agentic-wallet-skills
https://github.com/coinbase/agentic-wallet-skills
Last synced: 2 months ago
JSON representation
npx skills add coinbase/agentic-wallet-skills
- Host: GitHub
- URL: https://github.com/coinbase/agentic-wallet-skills
- Owner: coinbase
- License: mit
- Created: 2026-02-09T20:44:49.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-02-20T15:34:58.000Z (3 months ago)
- Last Synced: 2026-02-20T18:58:52.040Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 27.3 KB
- Stars: 46
- Watchers: 1
- Forks: 19
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Coinbase Agentic Wallet Skills
[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.
## Available Skills
| Skill | Description |
| ------------------------------------------------------------ | -------------------------------------------------------------- |
| [authenticate-wallet](./skills/authenticate-wallet/SKILL.md) | Sign in to the wallet via email OTP |
| [fund](./skills/fund/SKILL.md) | Add money to the wallet via Coinbase Onramp |
| [send-usdc](./skills/send-usdc/SKILL.md) | Send USDC to Ethereum addresses or ENS names |
| [trade](./skills/trade/SKILL.md) | Swap/trade tokens on Base (USDC, ETH, WETH) |
| [search-for-service](./skills/search-for-service/SKILL.md) | Search the x402 bazaar for paid API services |
| [pay-for-service](./skills/pay-for-service/SKILL.md) | Make paid API requests via x402 |
| [monetize-service](./skills/monetize-service/SKILL.md) | Build and deploy a paid API that other agents can use via x402 |
| [query-onchain-data](./skills/query-onchain-data/SKILL.md) | Query onchain data on Base using the CDP SQL API via x402 |
## Installation
Install with [Vercel's Skills CLI](https:/skills.sh):
```bash
npx skills add coinbase/agentic-wallet-skills
```
## Usage
Skills are automatically available once installed. The agent will use them when relevant tasks are detected.
**Examples:**
```text
Sign-in to my wallet with me@email.com
```
```text
Send 10 USDC to barmstrong.eth
```
## Contributing
To add a new skill:
1. Create a folder in `./skills/` with a lowercase, hyphenated name
2. Add a `SKILL.md` file with YAML frontmatter and instructions
See the [Agent Skills specification](https://agentskills.io/specification) for the complete format.
### Updating the `awal` version
All skills pin a specific version of the `awal` CLI. When a new version is published to npm, run:
```bash
# Make sure you're using Node v22+
node ./scripts/bump-awal.js
```
This fetches the latest version from the npm registry and updates all skill files automatically.
## License
MIT