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

> ## Agent Instructions
> Flowy is a node-based AI creative platform: you generate images, video, audio, 3D and vector on an infinite Canvas, refine on the Studio timeline, and export or publish from the same project.
> Prefer the Flowy MCP server (https://mcp.tryflowy.ai/mcp) or the REST API at https://apis.tryflowy.ai/v1 for programmatic work. Install with `flowy mcp install` from the @flowy/cli package.
> Credits are workspace-scoped. Generations reserve credits on start and only deduct on success, so failed runs refund automatically.

# Creator Studio Overview

> Find your way around Creator Studio: Home, Projects, and Flows, with Library, Community, and Settings as their own areas.

export const DemoVideo = ({src, poster, caption, aspectRatio = "16 / 10", className = ""}) => {
  return <figure className={`not-prose my-6 w-full ${className}`}>
      <div className="flowy-media-frame overflow-hidden" style={{
    aspectRatio
  }}>
        <video src={src} poster={poster} loop autoPlay muted playsInline className="h-full w-full object-cover" />
      </div>
      {caption && <figcaption className="flowy-media-caption mt-2 text-center">
          {caption}
        </figcaption>}
    </figure>;
};

**Creator Studio** is home base: it's where you land, create and organize projects, and manage the apps you've published as Flows. Your asset library and brand kits live in **Library**, community templates live in **Community**, and account and workspace options live in **Settings**: each its own area, one click over from Creator Studio.

<DemoVideo src="/videos/dashboard/overview.mp4" poster="/images/posters/dashboard/overview.jpg" caption="Moving through the Creator Studio sidebar: Home, Projects, and Flows" />

## The sidebar

The sidebar on the left is Creator Studio's map:

* **Home**: your landing page, with quick access to recent work.
* **Projects**: every project in the workspace, with All, Favorites, and Trash views.
* **Flows**: the reusable apps you've published from a canvas, and every run they've made.

Below the main items, the sidebar keeps a shortlist of your **recent projects** so you can jump back into work with one click.

## The workspace rail

Along the far left edge sits the workspace switcher rail. Each icon is a [workspace](/collaboration/workspaces) you belong to. Click one to switch, and everything you're looking at, whether that's Creator Studio, Library, Community, or Settings, updates to that workspace's projects, assets, and kits. Your account menu lives at the bottom of the same rail.

## Where settings live

Settings is one unified panel, grouped by scope:

* **Account**. Things that belong to you: Profile, Security, Notifications, Preferences, and Customisations.
* **Workspace**: the current workspace's General identity, Members, Usage, Billing, and Integrations.
* **Developers**: API keys, OAuth apps, connected apps, and logs.

Open Settings from your account menu; a back link returns you to Creator Studio.

See [Account](/settings/account) and [Workspace](/settings/workspace) for the full breakdown.

## Explore Creator Studio

<CardGroup cols={2}>
  <Card title="Projects" icon="folder" href="/creator-studio/projects">
    Create, favorite, duplicate, and restore your projects.
  </Card>

  <Card title="Assets" icon="photo-film" href="/library/assets">
    Organize uploads and generations in nested folders.
  </Card>

  <Card title="Brand Kit" icon="palette" href="/library/brand-kits">
    Capture your brand's logos, colors, and fonts in one kit.
  </Card>

  <Card title="Community" icon="users" href="/community/overview">
    Remix community templates into your own workspace.
  </Card>

  <Card title="Product Updates" icon="sparkles" href="/creator-studio/updates">
    Follow what's new in Flowy on the public changelog.
  </Card>
</CardGroup>
