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

# Branches and automation

> Isolate work in Branches and run repeatable project tasks with schedules or agent bundles.

Branches isolate code, content, and previews. Teammates and agents can work on
separate lines without changing production.

## Work in a Branch

Create a Branch, deploy it to Preview, and merge it when the change is ready.

```bash theme={null}
fimo checkout -b feat/homepage
fimo deploy -m "feat: update homepage"
fimo status
fimo checkout main
fimo merge feat/homepage
```

[Work with Branches](/docs/environments/overview) explains the full review flow.

## Run repeatable work

Use a scheduled command for one repeatable command, or use an agent bundle when
the work needs a goal, tools, judgment, or review rules.

```bash theme={null}
fimo schedules create nightly --cron "0 2 * * *" --do "fimo validate"
```

[Automate your project](/docs/automate/overview) to choose the right workflow.

[See all updates](/docs/changelog/overview)
