> ## 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.

# Community

> Explore, bookmark, and remix work shared by other Flowy creators, or follow the ones you like.

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>;
};

**Community** is where other Flowy creators' work lives: templates and published Flows you can remix into your own workspace, the creators you follow, and anything you've saved for later. Instead of starting from a blank canvas, find a workflow you like and make it yours.

<DemoVideo src="/videos/dashboard/community-remix.mp4" poster="/images/posters/dashboard/community-remix.jpg" caption="Browsing community templates and remixing one into a new project" />

## The five areas

* **Explore**. The combined landing page: featured picks up top, then the full catalog of templates and Flows.
* **Templates**: community canvases you can remix, filtered down to just that catalog.
* **Flows**: published community apps, filtered down to just those.
* **Following**: published work from the creators you follow. Signed out, or following no one yet, it shows an empty state instead of redirecting you away.
* **Saved**: the templates and Flows you've bookmarked, so you can build a shortlist without committing to a remix yet.

## Browse templates and Flows

Explore opens with featured picks, followed by the full catalog. Click any template or Flow to see its detail view, a preview of the canvas and what the workflow produces, before you commit to remixing it.

## Bookmark for later

Not ready to remix? Bookmark a template or Flow and it lands in **Saved**. Bookmarks are a lightweight way to build a shortlist of workflows worth trying.

## Remix a template or Flow

Remixing turns a community template or Flow into a project of your own. Flowy performs the copy server-side:

1. A new project is created in your current workspace.
2. Its entire canvas is cloned into it: nodes, connections, and settings.
3. Every piece of media is copied into your workspace, so the images and video in your remix belong to you.

When the remix finishes, the new project opens in the [canvas editor](/canvas/overview). It's fully yours: edit prompts, rewire nodes, and regenerate anything. Nothing you do touches the original.

<Tip>
  Remixes are regular projects. Find them later under [Projects](/creator-studio/projects), and manage the media they brought along in [Assets](/library/assets).
</Tip>
