CLI
Install the Agentis CLI and operate agent wallets from your terminal.
The Agentis CLI is the fastest way to create wallets, inspect agents, set policies, pay MPP or x402 URLs, use Jupiter Earn, run Umbra privacy flows, and scaffold facilitators.
Install
Install the CLI globally:
npm install -g @agentis-hq/cli
agentisLogin
agentis login
agentis whoami
agentis logoutThe CLI uses OAuth authorization code flow with PKCE and stores its access and refresh credentials in the OS keychain. Each CLI login is independently revocable and does not invalidate other sessions.
Wallets and agents
Create a hosted wallet:
agentis wallet create --name my-agentCreate a local encrypted wallet:
agentis wallet create --name local-agent --localList wallets and hosted agents:
agentis wallet list
agentis wallet list --jsonCreate a hosted agent with on-chain policy mode:
agentis agent create policy-agent --onchain-policyPaid fetch
agentis fetch https://example.com/paid-data --agent my-agentAgentis detects MPP and x402 payment requests and pays through the selected hosted agent wallet.
Policy
agentis policy get my-agent
agentis policy set my-agent --max-per-tx 1 --daily 10 --budget 100
agentis policy set my-agent --kill
agentis policy set my-agent --resumeJupiter Earn
Jupiter Earn commands are mainnet-only and require --mainnet.
agentis earn positions my-agent --mainnet
agentis earn deposit my-agent --asset USDC --amount 1 --mainnet
agentis earn sweep --dry-runUmbra privacy
agentis privacy register --agent private-agent
agentis privacy status --agent private-agent
agentis privacy balance --agent private-agent
agentis privacy deposit --agent private-agent --amount 1000000
agentis privacy scan --agent private-agent
agentis privacy claim-latest --agent private-agentFacilitators
agentis facilitator create my-facilitator
agentis facilitator list
agentis facilitator publish my-facilitator --url https://facilitator.example.com --listedHelp
Use --help when you need command-specific options:
agentis --help
agentis wallet create --help
agentis agent send --help
agentis earn deposit --help
agentis privacy create-utxo --help
agentis facilitator publish --help