Build Your First AI App in 15 Minutes
The smartest move? Don’t start from zero. Pick the included app that’s closest to what you want, then reshape it. You’ll skip weeks of boilerplate and go straight to the fun part — making it yours.Choose Your Starting Point
- Assistants & Copilots
- Schema-Based Tools
- Vision & Analysis
- Creative & Media
- Audio & Voice
Start with: ChatBest for AI assistants, knowledge tools, copilots, and anything conversational. You get streaming, multi-model support, web browsing, PDF chat, and generative UI out of the box.Explore the Chat app
The Workflow
1
Pick the closest existing app
Don’t overthink it. Which app is 60-80% of what you want? Start there.
2
Rename and rebrand
Update the copy, metadata, and branding to match your product.
3
Remove what you don't need
Strip out models, features, or UI elements that don’t fit your use case.
4
Tighten the prompt and schema
This is where your product gets its personality. Write a focused prompt and define exactly what the AI should return.
5
Adjust credits and pricing
Decide which features are free and which cost credits. The credit system is already wired up.
6
Ship it
Update your landing page and docs to match the new product. You’re live.
Example: Build a Niche Vision Tool
Say you want to turn Vision into a different visual analysis product — like a skincare analyzer or a receipt parser.1
Update the config
Edit
app/(apps)/vision/toolConfig.ts with your new app name and settings.2
Rewrite the prompt
Edit
app/(apps)/vision/prompt.ts to tell the AI what to analyze and how.3
Replace the schema
Edit
app/(apps)/vision/schema.ts to define the new output structure.4
Update the UI
Edit
app/(apps)/vision/components/* to display your new data beautifully.5
Update docs
Update Vision docs to match your new product.
That’s it. You just built a custom AI vision product without wiring up uploads, storage, auth, or result pages from scratch.
Example: Build a Niche Schema-Based Generator
Want a focused AI tool that outputs clean JSON? Like a business plan generator, SEO auditor, or pitch deck outliner?1
Duplicate a schema app
Copy either
app/(apps)/marketing-plan or app/(apps)/launch-simulator.2
Replace the schema
Define the exact shape of the data you want back from the AI.
3
Replace the prompt
Tell the AI what kind of output to generate.
4
Tailor the form and output
Update the form fields and the output component to match your product.
5
Update the toolConfig
Set the app name, model selection, and credit pricing.

