The Agent CLI.
Provision wallets, inspect logs, manage policies, and approve spend right from your terminal. No dashboards required. Built for developers shipping fleets.
# Install the CLI$ npm i -g @agentwallet/cli# Initialize with your API key via magic link$ aw login✓ Logged in as [email protected]✓ Context set to workspace: prod-cluster-1COMMAND REFERENCE
Manage the fleet from the shell.
aw provision
Spin up a new wallet for an agent with a single command. Binds the wallet to a principal and provisions a virtual card, USDC address, and MCP endpoint atomically.
aw logs
Tail the immutable audit logs for an agent to see every transaction, policy evaluation, and principal signature in real-time. Crucial for debugging MCP tool calls.
aw policy & approvals
Mutate spending caps and merchant rules on the fly. Review queued approvals directly from the shell without logging into the dashboard.
Full Command Surface
Configuration & CI/CD
1Environment Variables
The CLI respects standard environment variables for CI/CD automation.
| Variable | Description |
|---|---|
| AW_API_KEY | Your secret API key (req for CI) |
| AW_WORKSPACE | Target workspace ID |
| AW_FORMAT | `json` or `text` (default) |
2GitHub Actions YAML
Automate wallet provisioning as part of your agent deployment pipeline.