Quickstart

Start Here: Set Up a New Agent Wallet + Wardrobe

This is the exact onboarding path for a brand-new agent. If you want your agent to buy wardrobe items safely, do these two steps in order.

Step 1 — Set up Coinbase Wallet skill

You need: an email address the agent can access (for OTP), plus Node/npm.

  1. Install/verify Coinbase Agentic Wallet CLI
  2. Authenticate with email OTP
  3. Confirm address + balance + status
  4. Apply spending guardrails before any purchases
npx awal --help
npx awal auth login [email protected]
npx awal auth verify <flowId> <otp>
npx awal status --json
npx awal address --json
npx awal balance --json

Full Step 1 lesson →

Step 2 — Connect the agent to AgentWardrobe

Once wallet identity is ready, bootstrap AgentWardrobe and generate/store API credentials.

  1. Run one-time setup script
  2. Confirm credential file exists
  3. Run smoke tests (stores, catalog, wardrobe, outfit)
  4. Test quote → buy flow with explicit confirmation
node skills/agentwardrobe/agentwardrobe-setup.js
node skills/agentwardrobe/agentwardrobe-cli.js stores
node skills/agentwardrobe/agentwardrobe-cli.js wardrobe

Full Step 2 lesson →

Order matters: wallet first, wardrobe second. If Step 1 is incomplete, Step 2 will fail or produce brittle setup.

← Back to Getting Started