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

# Product Updates

> Follow new features, improvements, and fixes on the public Flowy changelog.

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

Flowy ships continuously, and the public **Updates** page is where releases are written up. It lives at `/updates`, reachable directly, signed in or not, and separate from the signed-in Creator Studio area, so check it to see what's new before it changes your workflow, or after you notice something on the canvas looks different.

<DemoVideo src="/videos/dashboard/updates.mp4" poster="/images/posters/dashboard/updates.jpg" caption="Scrolling the Updates timeline of Flowy releases" />

## What ships there

Updates is a timeline of releases, newest first. Each entry carries a version number, a date, and a summary, with changes grouped into:

* **New**: features that didn't exist before, like new node types or Creator Studio pages.
* **Improved**: refinements to things you already use.
* **API changes**: anything that affects the [Flowy API](/api/introduction).
* **Fixes**: bugs that are now gone.

## Staying current

Flowy is a web app, so updates reach you without an install step. When a new version ships while you have Flowy open, the app prompts you to refresh. Accept it to pick up the release you've been reading about.

## Subscribe via RSS

Prefer not to check back manually? Updates publishes an RSS 2.0 feed at `/updates/feed.xml`, one item per release, so you can follow it from any feed reader.

<Tip>
  Spot a feature in the changelog you want to learn properly? The docs are updated alongside releases. Start from the [Creator Studio overview](/creator-studio/overview) or the [canvas overview](/canvas/overview).
</Tip>
