> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anotherwrapper.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Apps Overview

> Explore the 8 AI apps included in AnotherWrapper Premium

Your starter kit comes loaded with **8 production-ready AI apps**. These aren't random demos -- they're real product patterns you can ship, remix, or build on top of.

Across the suite, you reuse the same auth, credits, generation history, and PostgreSQL layers. Upload-heavy and media-heavy apps also plug into the shared storage system, while the schema-first apps stay lighter.

## The Apps

<CardGroup cols={2}>
  <Card title="AI Chat" icon="robot" href="/apps/chat">
    The flagship. Multi-model AI assistant with streaming, web browsing, PDF chat, citations, generative UI, and conversation history. This is the one most people start with.
  </Card>

  <Card title="Image Studio" icon="image" href="/apps/image-studio">
    Gallery-based image generation with model switching, lightbox previews, search, and download. Think: your own AI creative tool.
  </Card>

  <Card title="Video Studio" icon="video" href="/apps/video-studio">
    Text-to-video and image-to-video generation with Sora, Veo, Kling, and WAN models. Async queue, polling, and a clean gallery workflow built in.
  </Card>

  <Card title="Voice Studio" icon="microphone" href="/apps/voice">
    Text-to-speech, voice transformation, music generation, and sound effects -- all powered by ElevenLabs, wrapped in one product shell.
  </Card>

  <Card title="Audio" icon="file" href="/apps/audio">
    Record or upload audio, get a transcript, then generate structured summaries with action items. Voice-to-notes, done right.
  </Card>

  <Card title="Vision" icon="eye" href="/apps/vision">
    Upload a meal photo, get calorie estimates and macro breakdowns. A clean example of the "image in, structured data out" pattern.
  </Card>

  <Card title="Marketing Plan" icon="chart-line" href="/apps/marketing-plan">
    Fill in a short form, pick a model, get a validated growth strategy back. The go-to example for schema-based business tools.
  </Card>

  <Card title="Launch Simulator" icon="sparkles" href="/apps/launch-simulator">
    Simulate a Product Hunt launch with AI-generated stats, timeline events, top comments, and founder drama. Serious architecture, playful output.
  </Card>
</CardGroup>

## Shared Building Blocks

All 8 apps reuse the same core infrastructure:

* **Auth** -- Better Auth for sign-in, sessions, and user management
* **Credits** -- a shared credit system for monetizing premium features
* **Provider abstraction** -- swap AI models without rewriting your app
* **Storage** -- S3-compatible object storage for upload-heavy and media-heavy apps
* **Generation history** -- every output is saved and accessible later
* **PostgreSQL persistence** -- Drizzle ORM for clean, typed data access

That shared foundation is the real value. You're not maintaining 8 separate codebases -- you're building on one.

## Where to Start

<Tip>
  If you want to understand the repo fast, explore these three apps in order. Together they cover most of the key product patterns in the codebase.
</Tip>

<Steps>
  <Step title="Chat">
    The most advanced app. Covers streaming, tools, RAG, generative UI, and multi-model switching.
  </Step>

  <Step title="Image Studio">
    A gallery-based creative workflow. Great for understanding storage, model catalogs, and asset management.
  </Step>

  <Step title="Vision">
    The simplest "image in, structured data out" pattern. Perfect for learning schema-based AI workflows.
  </Step>
</Steps>
