Skills Overview
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
npx skills add agnicpay/agnic-wallet-skillsOr clone locally:
git clone https://github.com/agnicpay/agnic-wallet-skills
npx skills add ./agnic-wallet-skillsAvailable Skills
| Skill | Trigger Phrases | Description |
|---|---|---|
| authenticate | "log in", "sign in", "authenticate" | Browser OAuth or token-based headless auth |
| check-balance | "check balance", "how much do I have" | USDC balance across networks |
| search-for-service | "find an API", "search for" | Discover x402-enabled APIs |
| pay-for-service | "call this API", "use this service" | Make x402 requests |
| fund-wallet | "add funds", "deposit", "top up" | Instructions for funding wallet |
| get-agent-identity | "agent identity", "trust score" | ERC-8004 identity and credentials |
| agent-email | "agent email", "check inbox", "send email" | Send, receive, and manage agent email |
| 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:
- Check the wallet is authenticated (
agnic status) - Verify sufficient balance (
agnic balance --network base) - Execute the request (
agnic x402 pay https://api.example.com/weather --json) - Report the results to the user
# The AI runs these commands automatically:
npx agnic@latest balance --network base --json
npx agnic@latest x402 pay https://api.example.com/weather --jsonPrerequisites
Skills require the agnic CLI to be available:
npm install -g agnicAnd the agent must be authenticated:
# Headless mode
export AGNIC_TOKEN=<agnic_token>
agnic status
# Or browser mode
agnic auth loginUnique: 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
Authenticate
Browser OAuth or token-based auth
Check Balance
USDC balance across networks
Search for Service
Discover x402-enabled APIs
Pay for Service
Make paid x402 API requests
Fund Wallet
Add USDC to your wallet
Agent Identity
ERC-8004 on-chain identity
Agent Email
Send and receive email
AI Gateway
Access 340+ AI models