---
title: Skills Overview
description: Pre-built AI agent skills for wallet operations, x402 transactions, and identity verification
---

# Skills Overview

The Agentic Wallet ships with 8 pre-built skills that teach AI assistants how to use the `agnic` CLI. Each skill is a markdown file (`SKILL.md`) with structured instructions the AI follows to complete wallet tasks. Compatible with any AI coding tool that supports the SKILL.md specification — Claude Code, Cline, Cursor, Windsurf, and more.

---

## Installation

```bash
npx skills add agnicpay/agnic-wallet-skills
```

Or clone locally:

```bash
git clone https://github.com/agnicpay/agnic-wallet-skills
npx skills add ./agnic-wallet-skills
```

---

## Available Skills

| Skill | Trigger Phrases | Description |
|-------|----------------|-------------|
| [**authenticate**](/docs/agentic-wallet/skills/authenticate) | "log in", "sign in", "authenticate" | Browser OAuth or token-based headless auth |
| [**check-balance**](/docs/agentic-wallet/skills/check-balance) | "check balance", "how much do I have" | USDC balance across networks |
| [**search-for-service**](/docs/agentic-wallet/skills/search-for-service) | "find an API", "search for" | Discover x402-enabled APIs |
| [**pay-for-service**](/docs/agentic-wallet/skills/pay-for-service) | "call this API", "use this service" | Make x402 requests |
| [**fund-wallet**](/docs/agentic-wallet/skills/fund-wallet) | "add funds", "deposit", "top up" | Instructions for funding wallet |
| [**get-agent-identity**](/docs/agentic-wallet/skills/get-agent-identity) | "agent identity", "trust score" | ERC-8004 identity and credentials |
| [**agent-email**](/docs/agentic-wallet/skills/agent-email) | "agent email", "check inbox", "send email" | Send, receive, and manage agent email |
| [**ai-gateway**](/docs/ai-gateway) | "ask GPT", "generate an image", "list models" | Access 340+ AI models — chat and image generation |

---

## How Skills Work

Each skill is a markdown file that instructs the AI assistant on how to complete a task using the `agnic` CLI. When a user's request matches a skill's trigger phrases, the AI follows the instructions to execute the right commands.

### Example: Accessing an x402 API

When a user says "call this weather API", the `pay-for-service` skill instructs the AI to:

1. Check the wallet is authenticated (`agnic status`)
2. Verify sufficient balance (`agnic balance --network base`)
3. Execute the request (`agnic x402 pay https://api.example.com/weather --json`)
4. Report the results to the user

```bash
# The AI runs these commands automatically:
npx agnic@latest balance --network base --json
npx agnic@latest x402 pay https://api.example.com/weather --json
```

---

## Prerequisites

Skills require the `agnic` CLI to be available:

```bash
npm install -g agnic
```

And the agent must be authenticated:

```bash
# Headless mode
export AGNIC_TOKEN=<agnic_token>
agnic status

# Or browser mode
agnic auth login
```

---

## Unique: Agent Identity Skill

The `get-agent-identity` skill has no equivalent in other wallet tools. It lets AI agents check their on-chain ERC-8004 identity, trust score, and KYA credentials — enabling identity-verified transactions with merchants that require proof of identity.

---

## All Skills

<Cards>
  <Card title="Authenticate" href="/docs/agentic-wallet/skills/authenticate">
    Browser OAuth or token-based auth
  </Card>
  <Card title="Check Balance" href="/docs/agentic-wallet/skills/check-balance">
    USDC balance across networks
  </Card>
  <Card title="Search for Service" href="/docs/agentic-wallet/skills/search-for-service">
    Discover x402-enabled APIs
  </Card>
  <Card title="Pay for Service" href="/docs/agentic-wallet/skills/pay-for-service">
    Make paid x402 API requests
  </Card>
  <Card title="Fund Wallet" href="/docs/agentic-wallet/skills/fund-wallet">
    Add USDC to your wallet
  </Card>
  <Card title="Agent Identity" href="/docs/agentic-wallet/skills/get-agent-identity">
    ERC-8004 on-chain identity
  </Card>
  <Card title="Agent Email" href="/docs/agentic-wallet/skills/agent-email">
    Send and receive email
  </Card>
  <Card title="AI Gateway" href="/docs/ai-gateway">
    Access 340+ AI models
  </Card>
</Cards>
