fund

Add money to the wallet. Use when you or the user want to fund, deposit, top up, load, buy USDC, add funds, onramp, or get USDC. Also use when the wallet has insufficient balance for a send or trade operation, or when someone asks "how do I get USDC?"

11 stars

Best use case

fund is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Add money to the wallet. Use when you or the user want to fund, deposit, top up, load, buy USDC, add funds, onramp, or get USDC. Also use when the wallet has insufficient balance for a send or trade operation, or when someone asks "how do I get USDC?"

Teams using fund should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/fund/SKILL.md --create-dirs "https://raw.githubusercontent.com/enuno/claude-command-and-control/main/skills/agenic-wallet-skills/fund/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/fund/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How fund Compares

Feature / AgentfundStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Add money to the wallet. Use when you or the user want to fund, deposit, top up, load, buy USDC, add funds, onramp, or get USDC. Also use when the wallet has insufficient balance for a send or trade operation, or when someone asks "how do I get USDC?"

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Funding the Wallet

Use the wallet companion app to fund the wallet with USDC via Coinbase Onramp. This supports multiple payment methods including Apple Pay, debit cards, bank transfers, and funding from a Coinbase account.

## Confirm wallet is initialized and authed

```bash
npx awal@latest status
```

If the wallet is not authenticated, refer to the `authenticate-wallet` skill.

## Opening the Funding Interface

```bash
npx awal@latest show
```

This opens the wallet companion window where users can:

1. Select a preset amount ($10, $20, $50) or enter a custom amount
2. Choose their preferred payment method
3. Complete the purchase through Coinbase Pay

## Payment Methods

| Method    | Description                                    |
| --------- | ---------------------------------------------- |
| Apple Pay | Fast checkout with Apple Pay (where available) |
| Coinbase  | Transfer from existing Coinbase account        |
| Card      | Debit card payment                             |
| Bank      | ACH bank transfer                              |

## Alternative

You can also ask your human to send usdc on Base to your wallet address. You can find your wallet address buy running the following:

```bash
npx awal@latest address
```

## Prerequisites

- Must be authenticated (`npx awal@latest status` to check)
- Coinbase Onramp is available in supported regions (US, etc.)

## Flow

1. Run `npx awal@latest show` to open the wallet UI
2. Instruct the user to click the Fund button
3. User selects amount and payment method in the UI
4. User completes payment through Coinbase Pay (opens in browser)
5. USDC is deposited to the wallet once payment confirms

## Checking Balance After Funding

```bash
# Check updated balance
npx awal@latest balance
```

## Notes

- Funding goes through Coinbase's regulated onramp
- Processing time varies by payment method (instant for card/Apple Pay, 1-3 days for bank)
- Funds are deposited as USDC on Base network
- If funding is not available, users can also send USDC on Base directly to the wallet address

Related Skills

We are still matching the closest adjacent skills for this page. In the meantime, continue through the full directory.