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

# Organizations

> Every project lives inside an organization — list the ones you belong to, switch the active org, and view members.

A Fimo account belongs to one or more **organizations**, and every project lives inside one. The "active organization" is the default for `fimo init` and other org-scoped commands.

## Manage organizations

```bash theme={null}
fimo orgs list                        # organizations you belong to
fimo orgs members                     # members of the active org (--org <id> for another)
fimo orgs switch                      # interactive picker to change the active org
fimo orgs switch --org <id-or-slug>   # explicit switch (required in non-TTY shells)
```

After sign-in, the CLI auto-selects an active org — your session's current org, otherwise the first one — and never prompts. `fimo whoami` shows the signed-in user and the active organization.

<Warning>
  `fimo switch` is **not** the org switcher — bare `fimo switch <name>` is an alias for `fimo checkout`, which changes the active environment (git branch). To change organizations, use `fimo orgs switch`.
</Warning>

## Membership

Add people to an organization or a single project with `fimo invite`. Org membership grants access across all of that org's projects, while a project invite stays scoped to one project — so you can work with clients or freelancers without exposing the whole organization.

<Note>
  Org roles are `member`, `admin`, and `owner`. See [Invite collaborators](/docs/collaboration/invite) for what each role can do.
</Note>

## What's next

<Columns cols={3}>
  <Card title="Invite collaborators" icon="user-plus" href="/docs/collaboration/invite">
    Grant project or org access with roles.
  </Card>

  <Card title="Billing & credits" icon="coins" href="/docs/collaboration/billing-and-credits">
    Usage and credits are owned by the organization.
  </Card>

  <Card title="Sharing in Studio" icon="users" href="/docs/studio/collaboration">
    Manage access visually in the dashboard.
  </Card>
</Columns>
