Everything you need to ship an AI or Agent powered project across our three hackathon tracks. Docs, templates, quickstarts, and pro tips.
These are your starting points regardless of which track you choose.
| Resource | Link |
|---|---|
| Vercel Docs | vercel.com/docs |
| Vercel AI Platform | vercel.com/ai |
| AI Templates Gallery | vercel.com/templates/ai |
| AI SDK Docs | ai-sdk.dev/docs |
| v0 (ask v0 about anything Vercel) | v0.app |
| AI SDK | ai-sdk.dev |
| Agents Docs | ai-sdk.dev/docs/agents |
| MCP Docs | vercel.com/docs/mcp |
| Integrations | vercel.com/integrations |
| Agent Skills & Resources | vercel.com/docs/agent-resources |
| Vercel Plugin (for coding agents) | Use this to maximize building on Vercel with best practices |
| Sandbox | vercel.com/docs/sandbox |
| Workflow SDK | useworkflow.dev |
| AI Gateway & Models | vercel.com/ai-gateway/models |
| AI SDK 6 Announcement | vercel.com/blog/ai-sdk-6 |
| llms.txt (feed to your LLM) | ai-sdk.dev/llms.txt |
| vercel/ai GitHub | github.com/vercel/ai |
| Resource | Link |
|---|---|
| Vercel Academy | vercel.com/academy |
| AI SDK Course | vercel.com/academy/ai-sdk |
| AI Summary App Course | vercel.com/academy/ai-summary-app-with-nextjs |
| Building AI Agents Guide | vercel.com/kb/guide/how-to-build-ai-agents |
Build long-running, durable async agents with the Workflow Development Kit.
Your agents survive crashes, resume after deploys, and can pause for minutes or months. Use "use workflow" and "use step" directives to make async functions durable. Pair with DurableAgent from @workflow/ai/agent for AI-powered workflows with built-in streaming, retries, and observability.
npx create-next-app@latest --no-src-dirnpx workflow@latestexport default withWorkflow(nextConfig)"use workflow" and steps with "use step"DurableAgent from @workflow/ai/agent for AI agent workflows