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

# Invite collaborators

> Grant teammates and clients access to a project or organization with role-based permissions.

Once your site is live, bring in the people who will help run it. `fimo invite` grants access at two scopes — a single **project** or a whole **organization** — each with its own roles.

## Invite to a project

```bash theme={null}
fimo invite                                              # interactive: prompts for project, email, role
fimo invite --email "jane@acme.com" --role edit          # invite to the current project
fimo invite --project <project-id> --email "j@acme.com" --role full
```

| Role      | Access                                                                    |
| --------- | ------------------------------------------------------------------------- |
| `view`    | Read-only — clients, stakeholders                                         |
| `comment` | View and leave comments — reviewers, approvers                            |
| `edit`    | Edit code, content, assets, and use AI chat — developers, content editors |
| `full`    | Everything including settings and publishing — project leads              |

Project invites are scoped to a single project. Joining a project does **not** add someone to your organization, which makes it easy to collaborate with clients or freelancers while keeping the org private.

## Invite to an organization

```bash theme={null}
fimo invite --target organization                        # interactive org invite
fimo invite --target org --email "alice@acme.com" --role member
fimo invite --target org --email "alice@acme.com" --resend
```

| Role     | Access                                 |
| -------- | -------------------------------------- |
| `member` | Create projects, view members          |
| `admin`  | Manage members, settings, and projects |
| `owner`  | Full control                           |

Organization invites grant access to all projects in that organization. If the original email didn't arrive, resend it with `--resend`.

<Note>
  Invited users get an email with a sign-up link if they don't have an account yet, or a sign-in link if they do. Not sure which project role to pick? Start with `comment` — you can raise it later.
</Note>

## What's next

<Columns cols={3}>
  <Card title="Organizations" icon="building" href="/docs/collaboration/organizations">
    Manage org membership and switch the active org.
  </Card>

  <Card title="Sharing in Studio" icon="users" href="/docs/studio/collaboration">
    The visual way teammates invite and manage access.
  </Card>

  <Card title="Billing & credits" icon="coins" href="/docs/collaboration/billing-and-credits">
    How usage is metered across your organization.
  </Card>
</Columns>
