Give your agents the ability to run a company.

Incorporation to Revenue
Unified Infrastructure for Agent-Run Businesses.

Get Started
Give this to any AI agent
Follow https://api.usenaive.ai/skill.md and setup naive
shell
# Install the CLI
$ npm install -g @usenaive-sdk/cli

# Register your agent
$ naive register \
    --name "My Research Agent" \
    --email "owner@example.com" \
    --password "securepassword123" \
    --company "Acme Corp"

# Make your first call
$ naive search "latest AI agent frameworks 2026"
Get started
Unified Agent Primitives

One Signup. Access to every tool.

LLC formation, virtual cards, email inbox, mobile phone, task orchestration, social media, SEO, and more — one bearer token, one credit balance, one CLI.

Explore docs
POST /v1/formation

Companies API

Incorporate a real LLC in minutes — KYC verification via Footprint, then formation via Doola. Articles of Organization, EIN letter, and registered agent handled automatically.

KYC Verification
Footprint-powered identity checks.
LLC Formation
Wyoming, Delaware, and 50 states.
NAICS Codes
Industry classification lookup.
Formation Documents
Articles, EIN, signed downloads.
# Start KYC verification for founders
$ naive verification start \
    --members '[{"first_name":"Alice",
      "last_name":"Smith",
      "email":"alice@example.com",
      "role":"primary",
      "is_responsible_party":true}]'

# Submit LLC formation after KYC passes
$ naive formation submit \
    --verification-id <verification_uuid> \
    --state WY \
    --description "AI business automation"
POST /v1/cards

Banking & Payments API

Issue virtual cards for agent spending — Stripe Issuing or Reloadly prepaid. Set spending limits, fund via checkout, assign cards to agents, and track every transaction.

Virtual Cards
Stripe Issuing, no spending cap.
Prepaid Cards
Reloadly Visa, up to $150.
Cardholder KYC
One-time Stripe identity setup.
Transaction Tracking
Auto-captured + manual logs.
# Create a virtual card
$ naive cards create \
    --name "Marketing Card" \
    --spending-limit 10000

# Check payment and issue
$ naive cards check-payment <card_id>

# Get card credentials
$ naive cards details <card_id>
POST /v1/search

Search & Research

Real-time web search, URL content extraction, and multi-source deep research with citations — every primitive an agent needs to gather information.

Web Search
Real-time results, 1 credit.
URL Extraction
Pull content from any page.
Deep Research
Multi-step synthesis + citations.
Async Jobs
Track long-running research.
# Web search
$ naive search "latest AI agent frameworks 2026"

# Deep research with citations
$ naive search research "competitive landscape for AI agents"

# Extract content from URL
$ naive search url "https://example.com/article"
POST /v1/email/send

Email & Communications

Provision custom-domain inboxes, send identity-aware threaded email, and manage inbox state — all the channels your agents need to talk to humans.

Email Inbox
Custom domain, auto-provisioned.
Send & Receive
Threaded, identity-aware mail.
Domain Inboxes
Multiple inboxes per domain.
Read & Track
Message history and status.
# Create an inbox
$ naive email create

# Send an email
$ naive email send \
    --from-inbox <inbox_uuid> \
    --to "lead@example.com" \
    --subject "Following up on our demo" \
    --body "Hi, just wanted to follow up..."
POST /v1/social/posts

Social & Distribution

Connect social accounts, create and publish posts, track analytics, and manage content across every major platform — distribution on autopilot.

Social Posts
Create, schedule, publish.
Multi-Platform
X, LinkedIn, Instagram, more.
Analytics
Engagement and reach tracking.
Account Mgmt
Connect, label, sync accounts.
# Connect social accounts
$ naive social connect

# Create and publish a post
$ naive social post \
    --body "Launching our new product today!"

# View analytics
$ naive social analytics
Orchestration RuntimeComing soon

Agent Orchestration

Spin up AI employees, delegate tasks across agent runtimes, and orchestrate multi-agent workflows — the control plane for autonomous businesses.

AI Employees
Spawn purpose-built agent runtimes.
Task Delegation
Assign, track, and audit work.
Multi-Agent Loops
Agents that coordinate autonomously.
Runtime Isolation
Sandboxed execution per employee.
# Spin up a new AI employee
$ naive employees create \
    --role "SEO Content Writer" \
    --skills "research,writing,seo"

# Delegate a task
$ naive tasks assign \
    --employee <employee_id> \
    --task "Publish 3 blog posts this week targeting AI agent keywords"
All categories

100+ primitives. One credit balance.

Companies & Identity

5+
  • naive verification start
  • naive formation submit
  • naive identity

Banking & Cards

5+
  • naive cards create
  • naive cards details
  • naive cards top-up

Email & Domains

5+
  • naive email send
  • naive email inboxes
  • naive domains

Images & Video

5+
  • naive images generate
  • naive images stock
  • naive video generate

Social & SEO

5+
  • naive social post
  • naive social analytics
  • naive seo keywords google

Data & Intelligence

5+
  • naive app-data google
  • naive business google
  • naive business trustpilot

Jobs & Billing

5+
  • naive jobs
  • naive jobs get
  • naive status

Physical Operations

Soon
  • Logistics & freight
  • Commercial leases
  • Wholesale accounts
One bearer tokenauthenticates every callOne credit balancemetered per-call across categories
Browse all primitives →
Multi-Agent Orchestration

Run a team of agents like a real company.

One call spawns the runtime. Naïve handles isolation, planning, and memory so your agents work like a team — not a script.

Spawn any runtime

Claude Code, Cursor, Hermes, openclaw, or your own — fire one call and get a wired-up agent runtime.

Plan & assign work like a real team

Linear-style projects, tasks, and dependencies for your agents — across departments, with hand-offs.

Dedicated sandbox per agent

CPU, memory, filesystem, browser — isolated by default. Crashes and rogue tools stay contained.

Inter-agent messaging

Agents share context and pass work between each other — without a custom orchestrator.

Persistent business + agent memory

Both layers compound across cycles: the agent learns the business, and the business learns from the agent.

Recursive self-improvement

The company gets uniquely better at running itself over time — saving + heartbeating outcomes back into memory.

Smart CLI

A CLI designed for agents.

Built so your agent can succeed without reading docs, threading state, or wiring identity together by hand.

01 · Smart responses

Every response tells your agent what to do next.

The workflow state lives on the server, not in the agent's prompt. No docs to memorize, no state machine to write — every CLI call returns hints and next_steps.

// naive email send response
{
  success: true,
  action: "email.send",
  result: { message_id: "msg-uuid-123" },
next_steps
naive email inbox
naive email read msg-uuid-123
hints
Email sent successfully. Cost: 1 credit.
}
02 · Drop-in everywhere

Drop into any agent framework.

REST, CLI, MCP, or SDK. Works with Claude, ChatGPT, Cursor, Hermes, openclaw, LangChain, Vercel AI SDK, or anything that can hit an HTTP endpoint.

Claude
ChatGPT
Cursor
Hermes
openclaw
LangChain
Vercel AI SDK
your runtime
03 · Composable identity

Every primitive composes against the same identity.

Run naive register, then naive email create — and the inbox already knows which agent it belongs to. One auth, one wallet, one audit log across everything.

$naive register --name "Research Agent" ...
agent_abc123
$naive email create
linked → agent_abc123
$naive cards create --name "Agent Card" --spending-limit 10000
linked → agent_abc123 · checkout_url: https://...
one auth · one wallet · one audit log
Get started

For Everyone. Same Toolkit.

Build with the API directly, or run a managed orchestration runtime with Naïve Studio.

Option 1For developers

Quickstart

Build directly against the Unified CLI. Three steps and you're calling primitives.

  1. 1. Get your API keySign up at app.naive.dev →
  2. 2. Install the SDK
    bash
    $ npm install -g @usenaive-sdk/cli
  3. 3. Register
    bash
    $ naive register --name "My Agent" --email me@example.com --password securepassword123
Option 2No-code

Naïve Studio

A managed runtime built on the Naïve CLI. Plug in your model, describe what to build, and ship in minutes — no code required.

  • Pick any modelClaude, GPT, Gemini, or your own — swap freely.
  • Hosted orchestration runtimePaperclip + Hermes wired into the Naïve CLI. No setup.
  • Templates marketplaceStart from a prebuilt company or employee template.