From zerion-agent
Manages local Zerion wallets via Zerion CLI: create, import from private key or mnemonic, list addresses, fund with deposit info, backup recovery phrase, delete, and sync to mobile app. Agents use read-only; humans handle interactive passphrase prompts.
npx claudepluginhub zeriontech/zerion-ai --plugin zerion-agentThis skill is limited to using the following tools:
Encrypted local wallets stored in the Open Wallet Standard (OWS) vault at `~/.ows/`, AES-256-GCM. Keys never leave the device.
Installs Zerion CLI via npm, authenticates via API key or pay-per-call, and routes to specialized skills for crypto wallet analysis, trading, signing, and management across EVM chains and Solana.
Manages self-sovereign EVM wallets for AI agents: generate wallets, check balances, send ETH/ERC20 tokens, swap via Odos aggregator, interact with smart contracts on Base, Ethereum, Polygon, Arbitrum, Optimism. Local private keys.
Manages multichain crypto wallets via Trust Wallet CLI (twak): install, create wallets, check balances, send/swap tokens, history, price alerts, DCA, limit orders, ERC-20 approvals, token risk checks.
Share bugs, ideas, or general feedback.
Encrypted local wallets stored in the Open Wallet Standard (OWS) vault at ~/.ows/, AES-256-GCM. Keys never leave the device.
If a zerion command fails with command not found, install once:
npm install -g zerion-cli
Requires Node.js ≥ 20. For auth see the zerion umbrella skill.
For on-chain actions with a wallet → zerion-trading. For agent-token setup on a wallet → zerion-agent-management.
A mnemonic-derived wallet (created via wallet create or wallet import --mnemonic) holds both an EVM and a Solana account, so the same wallet can sign on either chain and act as a destination for cross-chain bridges in either direction.
A wallet imported from a single private key holds only one chain's account:
| Import flag | Account type | Can swap on | Can be cross-chain destination for |
|---|---|---|---|
--mnemonic | EVM + Solana | both | both |
--evm-key | EVM only | EVM chains | EVM chains |
--sol-key | Solana only | Solana | Solana |
wallet list shows which accounts each wallet has. Use this when picking --to-wallet for a cross-chain bridge — the destination wallet must have an account on the target chain.
| Operation | Type | Notes |
|---|---|---|
wallet list, wallet fund | Agent | Read-only. Safe to invoke autonomously. |
wallet create, wallet import, wallet backup, wallet delete, wallet sync | Manual | Require passphrase or interactive input. Humans must run these directly — agents must not call them. |
zerion wallet list # All wallets, addresses, active policies
zerion wallet list --search <query> # Filter by name or address
zerion wallet list --limit <n> --offset <n> # Paginate
zerion wallet fund --wallet <name> # Show EVM + Solana deposit addresses
These prompt for a passphrase, secret key, or confirmation. Do not invoke from an agent loop.
# Create a fresh encrypted wallet (EVM + Solana, generated locally)
zerion wallet create --name <name>
# Import from existing keys (interactive secret prompts — never expose keys in shell history)
zerion wallet import --name <name> --evm-key
zerion wallet import --name <name> --sol-key
zerion wallet import --name <name> --mnemonic
# Export the recovery phrase (passphrase required)
zerion wallet backup --wallet <name>
# Permanently delete (passphrase + confirmation)
zerion wallet delete <name>
# Sync to the Zerion mobile app via a one-time QR code
zerion wallet sync --wallet <name>
zerion wallet sync --all
Wallet-related config is set with zerion config:
zerion config set defaultWallet <name> # Used when --wallet is omitted
zerion config get defaultWallet
zerion config unset defaultWallet # Resets to "no default"
zerion config list # Show all config (sensitive values redacted)
~/.zerion/config.json is created with mode 0o600.
# 1. Create wallet (passphrase prompt; offers agent-token setup at the end)
zerion wallet create --name agent-bot
# 2. Fund it
zerion wallet fund --wallet agent-bot
# → prints EVM and Solana deposit addresses
# 3. Set as default so future commands omit --wallet
zerion config set defaultWallet agent-bot
# 4. (Optional) sync to mobile
zerion wallet sync --wallet agent-bot
After step 1's agent-token prompt, the wallet is ready for autonomous trading via zerion-trading. To configure agent tokens or policies later → zerion-agent-management.
| Code | Cause | Fix |
|---|---|---|
wallet_exists | Wallet name already taken | Choose a different name or wallet delete first |
wallet_not_found | Name not in OWS vault | zerion wallet list to see existing |
bad_passphrase | Wrong passphrase entered | Retry; passphrase is set at creation |
bad_mnemonic | Invalid recovery phrase format | Re-enter; must be valid BIP-39 |
bad_evm_key | Invalid 0x-prefixed hex | Should be 64 hex chars after 0x |
bad_sol_key | Invalid base58 keypair | Solana keys are base58, ≥87 chars |