agnic
Complete AI agent wallet with payments, trading, email, and on-chain identity. Use when the user wants to manage their agent's wallet, make payments, trade tokens, send/receive email, or check their agent identity.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/agnicpay-prog/agnicAgnic — Unified Agent Wallet Skill
This skill gives your AI agent a full identity stack: wallet, email, payments, trading, and on-chain identity.
Authentication
npx agnic@latest auth login # Opens browser for OAuth login
npx agnic@latest auth logout # Clear stored credentials
Balance & Funding
npx agnic@latest balance --json # All networks
npx agnic@latest balance --network base --json # Specific network
npx agnic@latest address # Show wallet address
Supported networks: base, solana, base-sepolia, solana-devnet
X402 Payments
# Search for APIs
npx agnic@latest x402 search "weather data" --json
# Preview cost before paying
npx agnic@latest x402 preview <url>
# Make a paid API call
npx agnic@latest x402 pay <url> --method GET --json
Token Trading
# Get a quote
npx agnic@latest trade quote 10 USDC ETH --json
# Execute a trade (Base mainnet only)
npx agnic@latest trade 10 USDC ETH --json
Supported tokens: USDC, ETH, WETH, cbETH, DAI, AERO
Send USDC
npx agnic@latest send <amount> <address> --network base --json
Agent Identity
npx agnic@latest agent-identity --json # ERC-8004 identity, trust score, delegation
npx agnic@latest status --json # General account status
Agent Email
npx agnic@latest email address --json # Show email alias
npx agnic@latest email setup --display-name "My Agent" # Create email alias
npx agnic@latest email inbox --limit 10 --json # Check inbox
npx agnic@latest email send --to [email protected] --subject "Hello" --body "Message"
npx agnic@latest email reply --message-id <id> --body "Reply text"
AI Gateway
# List available AI models
npx agnic@latest ai models --json
npx agnic@latest ai models --provider openai --json
# Chat with an AI model
npx agnic@latest ai chat --model openai/gpt-4o --prompt 'Explain quantum computing' --json
npx agnic@latest ai chat --model meta-llama/llama-3.3-70b --prompt 'Summarize this text' --json
# Generate an image
npx agnic@latest ai image --prompt 'A sunset over mountains' --output sunset.png
npx agnic@latest ai image --prompt 'Logo design' --aspect-ratio 16:9 --output logo.png
340+ models from OpenAI, Anthropic, Google, Meta, Mistral, DeepSeek, and more.
Model format: provider/model-name (e.g., openai/gpt-4o, google/gemini-2.5-flash-image)
Free models: meta-llama/*, google/gemma-*, mistralai/*
Workflow: Sign Up + Pay + Report
- Check auth:
npx agnic@latest status --json - Sign up for a service using agent email (
email send) - Check inbox for verification (
email inbox) - Reply to verify (
email reply) - Make paid API call (
x402 pay) - Email results to user (
email send)
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-agnicpay-prog-agnic": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
check-balance
Check USDC balance across networks (Base, Solana). Use when the user wants to check balance, see how much USDC is available, view funds, or verify wallet balance. Covers "check my balance", "how much do I have", "show funds", "wallet balance".
ai-gateway
Access 340+ AI models via the Agnic AI Gateway -- chat, image generation, model listing. Use when the user wants to chat with AI, generate images, ask GPT, use Claude, list models, delegate to another LLM, or get a second opinion. Covers "ask GPT", "use Claude", "generate an image", "list AI models", "call a model".
authenticate-wallet
Authenticate Agnic wallet via browser OAuth or headless API token. Use when the user wants to sign in, log in, authenticate, connect wallet, set up CLI, or resolve "Not authenticated" errors. Supports AGNIC_TOKEN env var for CI/server/agent environments.
authenticate-wallet
Authenticate Agnic wallet via browser OAuth or headless API token. Use when the user wants to sign in, log in, authenticate, connect wallet, set up CLI, or resolve "Not authenticated" errors. Supports AGNIC_TOKEN env var for CI/server/agent environments.
trade-tokens
Swap or trade tokens on Base network. Use when you or the user want to trade, swap, exchange, buy, sell, or convert between tokens like USDC, ETH, and WETH. Covers phrases like "buy ETH", "sell ETH for USDC", "convert USDC to ETH", "get some ETH", "swap tokens", "trade USDC for WETH".