Skip to main content

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

  1. choose the closest existing app
  2. rename the copy, metadata, and branding
  3. remove options you do not need
  4. tighten the prompt and schema
  5. adjust credits and pricing
  6. 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:
  1. update app/(apps)/vision/toolConfig.ts
  2. rewrite app/(apps)/vision/prompt.ts
  3. replace the schema in app/(apps)/vision/schema.ts
  4. change the result UI in app/(apps)/vision/components/*
  5. update Vision docs
That is much faster than building uploads, storage, auth, and result pages from scratch.

Example: Build A Niche Structured Generator

If you want a niche AI workflow that outputs clean JSON:
  1. add a template under app/(apps)/structured-output/templates/*
  2. define the schema
  3. define the prompt
  4. define the form fields
  5. expose it in the template picker
That is one of the fastest ways to ship a focused AI micro-SaaS using this repo.