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

# Teams

> Manage and view your teams and team members

## List Your Teams

View the teams you belong to:

```bash theme={null}
prime teams list
```

### Available Options

<ResponseField name="--limit" type="integer" optional>
  Maximum number of teams to return (default: 100)
</ResponseField>

<ResponseField name="--offset" type="integer" optional>
  Number of teams to skip for pagination (default: 0)
</ResponseField>

<ResponseField name="--output" type="string" optional>
  Output format: `table` (default) or `json`
</ResponseField>

### Example Output

| ID                        | Name         | Slug         | Role   | Created             |
| ------------------------- | ------------ | ------------ | ------ | ------------------- |
| clvb0itli0000oxevorvgrpfn | My Team      | my-team      | ADMIN  | 2025-01-15T10:30:00 |
| clvb1jtmk0001pxfv1abc2def | Research Lab | research-lab | MEMBER | 2025-02-01T14:20:00 |

## List Team Members

View the members of a specific team:

```bash theme={null}
prime teams members
```

This uses the team from your config. To specify a different team:

```bash theme={null}
prime teams members --team-id clvb0itli0000oxevorvgrpfn
```

### Available Options

<ResponseField name="--team-id" type="string" optional>
  Team ID to list members for. Uses the configured team ID if not specified.
</ResponseField>

<ResponseField name="--output" type="string" optional>
  Output format: `table` (default) or `json`
</ResponseField>

### Example Output

| User ID                   | Name  | Email                                         | Role   | Joined              |
| ------------------------- | ----- | --------------------------------------------- | ------ | ------------------- |
| clvb0itli0000oxevorvgrpfn | Alice | [alice@example.com](mailto:alice@example.com) | ADMIN  | 2025-01-15T10:30:00 |
| clvb1jtmk0001pxfv1abc2def | Bob   | [bob@example.com](mailto:bob@example.com)     | MEMBER | 2025-02-01T14:20:00 |

<Tip>
  Set a default team with `prime config set-team-id` so you don't need to pass `--team-id` every time.
</Tip>
