The Easiest Way To Build On Top Of This Repo
The smartest move is usually not starting from zero. Pick the included app that is closest to what you want, then reshape it.Choose The Right Starting Point
- use Chat if you want assistants, copilots, or knowledge tools
- use Structured Output if you want forms that return clean AI data
- use Vision if you want image-in, analysis-out workflows
- use Image Studio or Video Studio if you want creator tools
- use Audio or Voice Studio if audio is the core product
A Good Beginner Workflow
- choose the closest existing app
- rename the copy, metadata, and branding
- remove options you do not need
- tighten the prompt and schema
- adjust credits and pricing
- update the landing page and docs to match the new product
Example: Build A Niche Vision Tool
If you wanted to turn Vision into a different visual product:- update
app/(apps)/vision/toolConfig.ts - rewrite
app/(apps)/vision/prompt.ts - replace the schema in
app/(apps)/vision/schema.ts - change the result UI in
app/(apps)/vision/components/* - update Vision docs
Example: Build A Niche Structured Generator
If you want a niche AI workflow that outputs clean JSON:- add a template under
app/(apps)/structured-output/templates/* - define the schema
- define the prompt
- define the form fields
- expose it in the template picker

