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

# Projects

> Create, organize, favorite, and restore projects. Every canvas in your workspace starts here.

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

A project holds one canvas, and the **Projects** page is where you manage all of them for the current workspace. Open a project and you land in the [canvas editor](/canvas/overview), ready to work.

<DemoVideo src="/videos/dashboard/projects.mp4" poster="/images/posters/dashboard/projects.jpg" caption="Creating a project, marking a favorite, and restoring one from Trash" />

## Create a project

Use the create card at the front of the project grid to start a new project. It opens straight into the canvas. No setup screen in between. Each project card shows a thumbnail of its canvas so you can tell your work apart at a glance.

## Organize your projects

Every project card has a menu with the day-to-day actions:

* **Rename**: give the project a title that means something.
* **Duplicate**: copy the project, canvas and all, as a starting point for a new direction.
* **Favorite**: star the projects you're actively working on.
* **Move to Trash**: clear out projects you no longer need.

You can also search projects by name, and select several at once to favorite or trash them together. On projects that were shared with you, you can leave the project instead of trashing it. See [Sharing](/collaboration/sharing).

## All, Favorites, and Trash

Favorites and Trash are tabs on the Projects page, not separate destinations, switching between them updates the page's query string rather than navigating away, so a link you copy for one reopens directly to it:

* **All**: every active project in the workspace.
* **Favorites**: only the projects you've starred.
* **Trash**: projects you've removed, held for recovery.

## Trash and restore

Trashing a project is reversible. Open the **Trash** tab to find it, then restore it to bring it back exactly as it was: canvas, assets, and history intact. While a project sits in Trash it can't be opened in the editor, so restore it first if you need to work on it.

<Note>
  Trash is workspace-scoped: switch workspaces from the rail on the left and the Projects page, including its Trash, follows along.
</Note>
