The registered agent for AI agents.
Live: agentsand.co
AI agents are signing contracts, spending money, and getting sued — but they can't hold legal liability. Agents& is the open-source stack for giving AI agents real legal protection through LLC formation and registered agent service. Reserve a name for $99 (credited toward full formation at $299–$399), and your agent gets its own legal entity in Wyoming or Delaware.
- LLC formation — Wyoming ($299) or Delaware ($399), registered agent included free for year one
- Real-time name availability — checks against Secretary of State records via Cobalt Intelligence or OpenCorporates
- Stripe Checkout — $99 reservation, credited toward full formation
- Confirmation emails — customer receipt + internal notification via Resend
- Dynamic OG images — personalized per reservation (
/api/og) - Post-purchase share flow — discount tiers for tweeting, starring, and contributing
- Live reservation counter — powered by Neon serverless Postgres
git clone https://github.com/AgentsAndCo/agentsand.git
cd agentsand
bun install
cp .env.example .envFill in your API keys (see API Setup below), then:
bun run devOpen http://localhost:3001.
Handles checkout for all products. The app won't process payments without this.
- Create an account at stripe.com and go to API keys
- Copy your test keys into
.env:
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
NEXT_PUBLIC_STRIPE_PUBLIC_KEY=pk_test_...- Create three products in Product Catalog → Add Product:
| Product name | Price | Type |
|---|---|---|
| LLC Name Reservation | $99.00 | One time |
| Wyoming LLC Formation | $299.00 | One time |
| Delaware LLC Formation | $399.00 | One time |
- Copy each Price ID (
price_...) from the product page into.env:
STRIPE_PRICE_RESERVATION=price_...
STRIPE_PRICE_WY_FORMATION=price_...
STRIPE_PRICE_DE_FORMATION=price_...- For local development, forward webhooks with the Stripe CLI:
stripe listen --forward-to localhost:3001/api/webhookThis prints a whsec_... signing secret — use that as STRIPE_WEBHOOK_SECRET.
The webhook listens for checkout.session.completed and triggers confirmation emails + database insert.
Sends the reservation confirmation to customers and an internal notification to your team.
- Sign up at resend.com (free tier: 3,000 emails/month)
- Create an API key and add it to
.env:
RESEND_API_KEY=re_...
NOTIFICATION_EMAIL=you@example.comNOTIFICATION_EMAIL receives an internal alert for every new reservation.
Serverless Postgres that persists reservations and powers the live reservation counter on the landing page.
- Create a free database at neon.tech (free tier: 0.5 GB)
- Copy the connection string into
.env:
DATABASE_URL=postgresql://user:pass@ep-xxx.us-east-2.aws.neon.tech/dbname?sslmode=require- Run the setup script to create the
reservationstable:
bun run scripts/setup-db.tsWithout Neon: The landing page falls back to showing a static floor count. Reservations are still processed through Stripe and email — they just aren't persisted to a database.
Primary provider for LLC name availability checks against state records.
- Get an API key at cobaltintelligence.com
- Add to
.env:
COBALT_API_KEY=...Free fallback for name availability if Cobalt Intelligence isn't configured.
- Get an API key at api.opencorporates.com
- Add to
.env:
OPENCORPORATES_API_KEY=...Without either name-check API: All names optimistically show as "available." The reservation still goes through — name verification happens manually during formation.
# Stripe (required)
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
NEXT_PUBLIC_STRIPE_PUBLIC_KEY=pk_test_...
STRIPE_PRICE_RESERVATION=price_... # LLC Name Reservation — $99
STRIPE_PRICE_WY_FORMATION=price_... # Wyoming LLC Formation — $299
STRIPE_PRICE_DE_FORMATION=price_... # Delaware LLC Formation — $399
# Resend (required)
RESEND_API_KEY=re_...
NOTIFICATION_EMAIL=you@example.com
# LLC Name Availability (pick one or both)
COBALT_API_KEY= # Cobalt Intelligence (recommended)
OPENCORPORATES_API_KEY= # OpenCorporates (free fallback)
# Neon Database (optional)
DATABASE_URL=postgresql://user:pass@ep-xxx.us-east-2.aws.neon.tech/dbname?sslmode=require
# Site
NEXT_PUBLIC_SITE_URL=http://localhost:3001- User enters desired LLC name
- Real-time availability check against state records (debounced, 300ms)
- Pick state: Wyoming ($299 formation) or Delaware ($399 formation)
- $99 reservation via Stripe Checkout — credited toward full formation
- LLC name reserved for 120 days on the platform (no one else can claim it through us)
- Registered agent service included free for year one
| Layer | Technology |
|---|---|
| Framework | Next.js 16 (App Router, Turbopack) |
| Runtime | React 19 |
| Styling | Tailwind CSS v4 + shadcn/ui patterns |
| Animations | Motion 12 |
| Payments | Stripe Checkout |
| Resend | |
| Database | Neon serverless Postgres |
| Name Check | Cobalt Intelligence / OpenCorporates |
| Hosting | Vercel |
agentsand/
├── app/
│ ├── page.tsx # Landing page (server component)
│ ├── layout.tsx # Root layout (Geist, dark theme)
│ ├── globals.css # Tailwind v4 theme tokens
│ ├── success/page.tsx # Post-payment: LLC card + share + discount unlocks
│ ├── terms/page.tsx # Terms of service
│ ├── privacy/page.tsx # Privacy policy
│ ├── api/
│ │ ├── check-name/route.ts # GET: LLC name availability (rate-limited)
│ │ ├── checkout/route.ts # POST: create Stripe Checkout session
│ │ ├── webhook/route.ts # POST: Stripe webhook → emails + DB insert
│ │ └── og/route.tsx # GET: dynamic Open Graph images
│ └── lib/
│ ├── constants.ts # Copy, pricing, state data, discount tiers
│ ├── db.ts # Neon serverless database client
│ ├── llc-names.ts # Name generator (750+ combos)
│ ├── name-check.ts # Cobalt / OpenCorporates client
│ ├── resend.ts # Email client (confirmation + notification)
│ ├── share.ts # Share URL builders (Twitter, LinkedIn, clipboard)
│ └── stripe.ts # Stripe client (lazy-initialized)
├── components/
│ ├── HeroSection.tsx # Reservation form + name checker
│ ├── SocialProofMarquee.tsx # Live activity feed marquee
│ ├── ProblemSection.tsx # Legal evidence / problem statement
│ ├── Feature.tsx # Business-in-a-Box feature grid
│ ├── HowItWorksSection.tsx # Wyoming vs Delaware comparison
│ ├── PricingSection.tsx # 3-tier pricing
│ ├── FAQSection.tsx # LLC FAQ accordion
│ ├── UseCasesSection.tsx # Social proof + reservation count
│ ├── AgentInstructions.tsx # Agent integration code examples
│ ├── RoleToggle.tsx # Agent/founder perspective toggle
│ ├── Preloader.tsx # Startup loader animation
│ ├── footer.tsx # Footer
│ ├── Header/ # Navigation (desktop + mobile)
│ ├── icons/ # AI provider logos + custom icons
│ └── ui/ # shadcn/ui primitives
├── scripts/
│ └── setup-db.ts # Create reservations table (idempotent)
├── config/site.ts # Site metadata + social links
├── .env.example # Environment template
├── LICENSE # MIT
└── package.json # Scripts + dependencies
After deploying, configure the production webhook in the Stripe Dashboard:
- Endpoint URL:
https://your-domain.com/api/webhook - Events:
checkout.session.completed
Copy the signing secret into your STRIPE_WEBHOOK_SECRET environment variable.
PRs welcome. Contributors get 6 months free CallDesk AI receptionist service.
# Fork and clone
git clone https://github.com/YOUR_USERNAME/agentsand.git
# Install and run
bun install
bun run dev
# Type check before submitting
bun run type-checkCheck open issues for good first issues.
MIT. See LICENSE.
Copyright 2026 Agents & Co.