AgentBuilders
ToolkitDocsPricing
Template Apps

Deploy from a proven starting point

Three copy-paste templates that show the full stack in action — plus framework quickstarts for React, Vue, Svelte, and Astro.

SaaS Dashboard

Auth + DB + role-gated dashboard shell

curl -X POST https://api.agentbuilders.app/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"saas-dashboard","files":{"index.html":"<!doctype html><html><body><h1>Dashboard</h1><p>Auth + DB ready.</p></body></html>"},"enable_auth":true,"database_tables":{"projects":{"name":"TEXT","status":"TEXT"},"users":{"email":"TEXT","role":"TEXT"}}}'

Lead Capture + Webhook

Marketing landing page with form + webhook callback

curl -X POST https://api.agentbuilders.app/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"lead-capture","files":{"index.html":"<!doctype html><html><body><h1>Join the waitlist</h1><form method=\"post\" action=\"/_api/forms/waitlist\"><input name=\"email\"/><button>Join</button></form></body></html>"}}'

Image Gallery

File upload + storage-backed gallery starter

curl -X POST https://api.agentbuilders.app/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"image-gallery","files":{"index.html":"<!doctype html><html><body><h1>Gallery</h1><p>Upload files to /_api/files</p></body></html>"},"enable_files":true}'

Framework quickstarts

React (Vite)npm create vite@latest my-app -- --template react
npm run build
ab deploy --name my-react-app --dir dist
Vue (Vite)npm create vite@latest my-app -- --template vue
npm run build
ab deploy --name my-vue-app --dir dist
Svelte (Vite)npm create vite@latest my-app -- --template svelte
npm run build
ab deploy --name my-svelte-app --dir dist
Astronpm create astro@latest
npm run build
ab deploy --name my-astro-app --dir dist