All templates
Fintech
Agent Card Issuer
Give your agents real spending power, safely. This template verifies identity, optionally forms an entity, issues virtual payment cards, and routes every charge above a threshold through an approvals queue — programmable money for agents.
The agent prompt
Copy this into Cursor, Claude Code, or any Naïve-connected agent. It describes exactly what to build and which primitives to wire together.
Prompt
Build me an agent card issuer on Naive. It should verify a user's identity, issue virtual payment cards, and control spend so agents can pay for things safely. Use these Naive primitives: - verification: KYC before issuing - formation: optionally form an entity to hold the cards - cards: issue and manage virtual cards (Stripe Issuing) - approvals: gate charges over a threshold Read the docs at https://usenaive.ai/docs and start with: npm i -g naive && naive login
What it builds
Identity first
Run KYC before any card is issued.
Virtual cards
Issue and manage cards via Stripe Issuing.
Spend controls
Set limits and route large charges through approvals.
Entity formation
Optionally form an LLC to hold the cards.
Primitives used
cardsverificationformationapprovals
How it's built
- naive verification — KYC
- naive cards — issue + manage virtual cards
- naive approvals — spend guardrails