AgnicPay

Skills Overview

Pre-built AI agent skills for wallet operations, trading, x402 payments, and identity verification

Skills Overview

The Agentic Wallet ships with 9 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.


Installation

npx skills add agnicpay/agnic-wallet-skills

Or clone locally:

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

Available Skills

SkillTrigger PhrasesDescription
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
send-usdc"send", "transfer", "pay someone"Send USDC to address or ENS
trade-tokens"trade", "swap", "buy ETH"Swap tokens on Base
search-for-service"find an API", "search for"Discover x402-enabled APIs
pay-for-service"call this API", "use this service"Make x402 payment 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

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: Trading Tokens

When a user says "swap 10 USDC for ETH", the trade-tokens skill instructs the AI to:

  1. Check the wallet is authenticated (agnic status)
  2. Verify sufficient balance (agnic balance --network base)
  3. Execute the swap (agnic trade 10 usdc eth --json)
  4. Report the results to the user
# The AI runs these commands automatically:
npx agnic@latest balance --network base --json
npx agnic@latest trade 10 usdc eth --json

Prerequisites

Skills require the agnic CLI to be available:

npm install -g agnic

And the agent must be authenticated:

# 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

On this page