NextJS Quickstart
Build a basic Agora Conversational AI agent with Next.js.
Recipe prompt
Paste into Cursor, Claude Code, v0, or your coding agentYou are implementing the "NextJS Quickstart" recipe in this project.
Read the recipe markdown first:
https://raw.githubusercontent.com/AgoraIO-Conversational-AI/agent-quickstart-nextjs/main/docs/ai/RECIPE.md
Use the source repository for cross-reference:
https://github.com/AgoraIO-Conversational-AI/agent-quickstart-nextjs
Build this recipe into the user's app using the markdown as the implementation guide. Inspect related source files through the repository links when the recipe points to them. Ask before installing new dependencies.Recipe
Rendered from the configured recipe markdown.
recipeversion: 0.1.0 recipestatus: stable extension_points:
- api.routes
- prompts.system
- pipeline.providers
- ui.conversation
invariants:
- baseline.official-sample
- tokens.rtc-rtm
- lifecycle.strict-mode
- transcript.uid-remap
stable_contracts:
- env.required
- api.token
- api.invite-agent
- api.stop-conversation
Quickstart Recipe Profile
This repo is a reusable quickstart sample for building browser voice-agent experiences with Agora Conversational AI Engine.
Recipe Role
- Role:
basequickstart recipe. - Target audience: developers bootstrapping a production-style Next.js voice agent app.
- Reuse model: clone, bind project, run, then customize prompt/pipeline/UI.
Recipe Scope
This base recipe provides a copyable browser voice-agent starter with:
- browser RTC audio and RTM event transport
- server-side token, invite, stop, and optional custom LLM routes
- managed default STT, LLM, and TTS provider configuration
- pre-call, in-call, transcript, metrics, and connection-status UI
Baseline Implementation Guidance
This repository is the official Agora Next.js quickstart baseline for this recipe. Agents should use this repo's source and progressive disclosure docs as the starting point, then customize.
Do not recreate Agora ConvoAI integration from memory. Provider schemas, SDK builder fields, token behavior, and RTM event details can drift. For a new baseline implementation, follow L1/L2/from_scratch_bootstrap.md while copying verified patterns from this repo.
Extension Points
api.routes: add browser-facing routes underapp/api, with shared request/response types intypes/conversation.tswhen the client consumes them.prompts.system: editADA_PROMPTandGREETINGinapp/api/invite-agent/route.ts.pipeline.providers: adjust theDeepgramSTT,OpenAI, andMiniMaxTTSbuilder chain, or enable the commented BYOK blocks.ui.conversation: customizeQuickstartPreCallCard,QuickstartConversationLayout,QuickstartTranscriptPanel, andQuickstartPipelineMetrics.
Invariants
- Keep
RtcTokenBuilder.buildTokenWithRtmfor RTM-capable tokens. - Treat this repo as the official baseline; customize after preserving a working token, invite, RTC, RTM, and transcript flow.
- Preserve StrictMode
isReadyguard for join/mic initialization. - Preserve UID remap (
uid="0") andINTERRUPTEDmessage-list inclusion. - Keep documentation synchronized when workflows/contracts change.
Stable Contracts
GET /api/generate-agora-tokenreturns{ token, uid, channel }.POST /api/invite-agentaccepts{ requester_id, channel_name }and returns the agent id/state payload.POST /api/stop-conversationaccepts{ agent_id }and treats already-stopping sessions as success.- Required env vars are
NEXT_PUBLIC_AGORA_APP_IDandNEXT_AGORA_APP_CERTIFICATE. components/LandingPage.tsxowns pre-call bootstrap and RTM client lifecycle.components/ConversationComponent.tsxowns joined-session RTC/toolkit lifecycle.lib/conversation.tsowns transcript normalization helpers.
Internal / Subject to Change
- Visual styling and copy in the quickstart UI.
- The exact reseller defaults for STT, LLM, and TTS models.
- Connection issue display heuristics and metric chip presentation.
Consumer Onboarding Recipe
- Clone or scaffold from template.
- Bind Agora project and write
.env.local. - Run
pnpm run doctorandpnpm run dev. - Validate with
pnpm run verifybefore sharing modifications. - Customize agent behavior and UI using the supported surfaces above.