Cards
Virtual cards, capped at the network.
View primitiveCards, USDC payments, trading, and billing — one financial layer for autonomous agents that need to spend, subscribe, and move money safely.
Drop this into Cursor, Claude Code, or any agent. It reads the skill manifest and wires up Agent-Native Wallet for you.
Read https://usenaive.ai/skill.md and set up Naïve for Agent-Native Wallet in my project.
Give agents scoped payment rails: network-capped cards, request-level wallet spend, connected brokerage actions, and one balance for plans and subscriptions.
Virtual cards, capped at the network.
View primitiveUSDC on Base, pays x402 endpoints per request.
View primitiveStocks, options, and crypto.
View primitivePlans, subscriptions, and one balance.
View primitiveIssue cards, connect brokerage accounts, and meter every paid action from the same governed account.
Card creation follows a checkout flow — you receive a checkout_url for the card's initial funding. Set a hard spending limit and choose a managed virtual or prepaid card.
# Create a cardholder (once per company)
$ naive cards create-cardholder --first-name John --last-name Doe
# Create a virtual card with a spend limit
$ naive cards create --name "Marketing" --spending-limit 10000
# Fund + issue after checkout
$ naive cards check-payment <card-id>Naive owns the platform OAuth app. connect returns an authorize_url; the user approves, the broker redirects to Naive's callback, and the token is exchanged and stored encrypted — per user, paper and/or live.
# Connect a brokerage account (returns an authorize URL)
$ naive trading connect --env paper
# Once authorized, confirm the connection is active
$ naive trading connectionsAfter the checkout payment clears, check-payment issues the card automatically. Once active, retrieve the full card number, CVC, and expiry to start spending.
# Check funding, then read card credentials
$ naive cards check-payment <card-id>
$ naive cards details <card-id>
# Review transactions on the card
$ naive cards transactions --card-id <card-id>Cards, wallet payments, trading, and billing primitives — scoped per agent and auditable by default.