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

# Profile

> `gcai profile` commands.

## `gcai profile get`

Get your personal profile

```bash theme={null}
gcai profile get
```

Wraps `GET /me/profile` — see [Get your personal profile](/api-reference/get-my-profile) for full parameter semantics.

## `gcai profile update`

Update your personal profile

```bash theme={null}
gcai profile update [--preferred-name <value>] [--use-name-in-chats] [--role-title <value>] [--jurisdiction-focus <value>] [--practice-areas <value>…] [--custom-instructions <value>] [--privilege-marking-enabled] [--privilege-marking-text <value>] [--enter-to-submit] [--document-author-name <value>] [--enabled]
```

| Flag                               | Type       | Required | Description                                                          |
| ---------------------------------- | ---------- | -------- | -------------------------------------------------------------------- |
| `--preferred-name <value>`         | `string`   |          | Preferred name to use in chats. Send null to clear.                  |
| `--use-name-in-chats`              | `boolean`  |          | Whether the AI should address the user by name                       |
| `--role-title <value>`             | `string`   |          | Job title or role. Send null to clear.                               |
| `--jurisdiction-focus <value>`     | `string`   |          | Primary jurisdiction. Send null to clear.                            |
| `--practice-areas <value>…`        | `string[]` |          | Practice areas (max 20). Send null or \[] to clear.                  |
| `--custom-instructions <value>`    | `string`   |          | Custom instructions for every chat. Send null to clear.              |
| `--privilege-marking-enabled`      | `boolean`  |          | Whether AI responses include an attorney-client privilege disclaimer |
| `--privilege-marking-text <value>` | `string`   |          | Privilege disclaimer text. Send null to clear.                       |
| `--enter-to-submit`                | `boolean`  |          | Whether the chat composer submits on Enter instead of Cmd/Ctrl+Enter |
| `--document-author-name <value>`   | `string`   |          | Name stamped on AI tracked changes. Send null to clear.              |
| `--enabled`                        | `boolean`  |          | Whether the personal profile is active                               |

Wraps `PATCH /me/profile` — see [Update your personal profile](/api-reference/update-my-profile) for full parameter semantics.
