Vercel Templates: AI & Architecture
Which Vercel starter to reach for — AI product templates and the ones carrying real architectural leverage.
A curated pass over the Vercel template catalog, split into templates that ship an AI product and templates that hand you architecture you'd otherwise spend months building. Scan the table, then read only the entry you're reaching for.
The filter worth applying
Most AI templates are a chat box with a model behind it. The valuable ones separate agent state from execution, treat channels as interfaces into one agent, or solve a structural problem (multi-tenancy, collaboration, shared design language) that is genuinely hard to retrofit later.
Pick by what you're building
| Building | Reach for |
|---|---|
| Cross-platform personal / workplace assistant | eve Personal Agent |
| Perplexity-style research or vertical search | Morphic AI Answer Engine |
| Coding agents, or anything long-running and async | Open Agents |
| AI embedded in an existing business workflow | eve Content Agent |
| AI-generated dashboards over live SQL | MotherDuck Embedded Dives |
| Support / internal knowledge search (RAG) | Next.js OpenAI Doc Search |
| A service delivered over texting | Durable iMessage AI Agent |
| Voice-native assistant, coaching, interviews | Hume Empathic Voice Interface |
| Multi-tenant SaaS, white-label, site builder | Platforms Starter Kit |
| Production monorepo for a growing company | next-forge |
| Independently deployed sections, multiple teams | Multi-Zones Starter |
| Shared UI platform across several apps | Turborepo Design System |
| Many people editing the same object | Liveblocks Starter Kit |
AI product templates
eve Personal Agent
Best for: a serious cross-platform personal or workplace assistant.
Persistent web conversations · Slack, iMessage, and Linear integrations · durable sessions · long-term memory · user approval before a memory is saved · authentication and account linking.
More architecturally ambitious than a normal chatbot: the same agent identity and memory follow the user across every interface. Its approval-before-save memory model is the same instinct as a self-maintaining LLM wiki — the human stays the editor.
Verdict: one of the catalog's most complete visions of an actual AI product.
Morphic AI Answer Engine
Best for: a Perplexity-style research or vertical-search product.
Cited search · multiple search and model providers · streamed generative UI · authentication · PostgreSQL history · file uploads · guest mode · shareable results.
Verdict: probably the best starting point for a research assistant, market-intelligence tool, shopping researcher, or specialized answer engine.
Open Agents
Best for: coding agents, or any agent that must work asynchronously.
Three distinct layers:
Web product → Durable agent workflow → Isolated sandboxRepository cloning · shell and filesystem tools · hibernating sandboxes · persistent execution · cancellation · streaming · commits, pushes, and optional PR creation. (If it's opening PRs on your behalf, the git reference covers the recovery moves worth knowing.)
Verdict: both a compelling product starter and possibly the most valuable agent-architecture reference in the catalog. See Architectural leverage.
eve Content Agent
Best for: AI embedded into an existing business workflow.
Writers interact through Slack; it retrieves material from Notion, follows editable house-style skills, deterministically checks the result, and publishes approved content back to Notion.
It also demonstrates:
- User-scoped OAuth instead of shared credentials
- Approval buttons inside Slack
- Tool-specific skills
- Vercel Blob asset storage
- Sandbox execution
- OIDC authentication with no static infrastructure keys
Verdict: a better model for useful enterprise AI than "put a chatbot next to the dashboard."
MotherDuck Embedded Dives
Best for: AI-powered analytics products.
Users describe changes to dashboards, presentations, and interactive data apps in natural language. The generated interfaces stay real React components backed by live SQL.
Verdict: one of the most interesting examples of AI generating persistent product interfaces rather than text. The bundled auth is explicitly demo-grade — production needs real identity, authorization, rate limiting, and data isolation.
Next.js OpenAI Doc Search
Best for: customer support, internal knowledge search, documentation assistants.
The complete basic RAG pipeline:
- Process Markdown/MDX documents
- Generate embeddings
- Store them in Supabase Postgres with pgvector
- Retrieve relevant passages
- Stream a grounded response
Verdict: useful and understandable, but older and narrower than the newer agent templates — take its ingestion architecture as reference and modernize the model/API layer. For what a grounded pipeline actually demands in practice, see the RAG transit planning note.
Durable iMessage AI Agent
Best for: AI delivered through texting instead of another app.
iMessage webhooks · Chat SDK · AI Gateway · tools · durable workflows · retries · structured observability. Generation and message delivery are separate retryable steps, so a transient delivery failure doesn't rerun the model.
Verdict: a genuinely useful architecture for appointment assistants, concierge services, field operations, and consumer agents.
Hume Empathic Voice Interface
Best for: voice-native assistants, coaching products, interviews, conversational experiences.
A focused implementation of Hume's real-time voice interface — an interface, not a complete business product.
Verdict: excellent voice foundation; pair it with durable workflows and persistent user state to make it a product.
Architectural leverage
| Template | The idea | Leverage |
|---|---|---|
| Open Agents | The agent is not the sandbox | Extremely high — any long-running tool-using system |
| Platforms Starter Kit | Tenancy as a routing primitive | Extremely high — anything multi-tenant |
| eve Personal Agent | Channels are interfaces into one agent | High — agents living on multiple surfaces |
| Multi-Zones | One domain, independent deploys | High for many teams; negative for one |
| next-forge | Monorepo as the unit of production | High for a growing company |
| Turborepo Design System | One design language, many apps | Compounding once several products share UI |
| Liveblocks | Presence and shared state as infrastructure | Very high — collaboration is brutal to build |
Open Agents: the agent is not the sandbox
Agent state and orchestration live outside the isolated execution environment. That one separation buys:
- Durable execution beyond a request timeout
- Independent sandbox hibernation and restoration
- Replaceable model and sandbox providers
- Safe execution of generated code
- Reconnection to tasks already running
Applies to coding agents, browser agents, data agents — anything where the work outlives the request.
eve Personal Agent: channels as interfaces
Web
Slack ─────→ Shared identity, memory and tools
iMessage
LinearThe UI/API and the agent runtime deploy as separate Vercel services, which is what makes adding a fifth channel a config change rather than a rewrite.
Multi-Zones: use it deliberately
| Use it when | Avoid it when |
|---|---|
| Different teams own different product areas | Small product, single team |
| Parts of the app need independent releases | Build times are already fine |
| A legacy system needs incremental modernization | Coordination cost outweighs the win |
| Build times and org coupling have become painful | — |
Microfrontends introduce real coordination costs. next-forge is the same trade at the
monorepo level: right for a company, excessive for a weekend prototype.
Revised top five
Ranked on combined usefulness and architectural value:
- Open Agents — best agent-system architecture
- eve Personal Agent — best cross-channel agent product
- Platforms Starter Kit — best general SaaS architecture
- Morphic — best immediately useful AI product foundation
- Liveblocks Starter Kit — best collaborative-product foundation
The combination worth building
| Layer | Contributes |
|---|---|
| Platforms Starter Kit | Multi-tenancy, subdomains, tenant admin, authentication |
| Open Agents or eve | Durable AI execution, sandboxing, cross-channel identity |
| Stripe Subscription Starter | Monetization |
| Liveblocks | Realtime collaboration, if multiple people touch the same object |
Together: the bones of a genuinely substantial AI SaaS rather than another chatbot demo.
Caveats to carry forward
- MotherDuck auth is demo-grade — replace it before production.
- Doc Search predates the agent era; keep the ingestion, modernize the model layer.
- Hume EVI is a voice interface, not a product — it needs state and workflows around it.
- Multi-Zones / next-forge solve organizational problems; adopting them without the organization just adds coordination cost.
- Template catalogs move. Treat the architecture notes as the durable part and re-check the links before committing to any one starter.
See also
- LLM Wiki — the memory-and-approval loop that eve's agent memory implements as a product
- RAG transit planning — what a grounded retrieval pipeline demands once it has to cite its sources
- AI-Augmented Software Engineering — why context quality, not model quality, is the binding constraint on agents like these
- Git — the recovery commands worth knowing before an agent pushes on your behalf
Related pages
- LLM WikiBuild a second brain that maintains itself — an AI reads your sources and keeps a living, cross-referenced wiki of what you know.
- Git commands & workflowsEveryday git — branching, undoing, stashing, and cleanup.
- AI-Augmented Software Engineering 2025The essential numbers, shifts, tools, and risks reshaping how software gets built — from agentic IDEs to the junior squeeze.
- AWS Bedrock AI StrategyConsolidated overview of Bedrock capabilities, use cases, architecture patterns, governance, and a sequenced project portfolio for a wealth management firm.
- RAG Transit Planning ReportAI-synthesized walkthrough of IFP's proposal to use RAG over FTA planning/construction documents as agency institutional memory.