> ## Documentation Index
> Fetch the complete documentation index at: https://tbd-6fc993ce-hypeship-add-antigravity-mcp-client-doc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Organization

Inspect your organization's effective entitlements and manage its configurable concurrency limits.

## `kernel org entitlements`

Show the effective plan, feature access, and limits for the authenticated organization. These values already account for the organization's plan, trial, billing status, and overrides, so use them instead of inferring access from the plan name.

```bash theme={null}
kernel org entitlements

# Return the API response for scripts and agents
kernel org entitlements --output json
```

| Flag                       | Description                                                                                |
| -------------------------- | ------------------------------------------------------------------------------------------ |
| `--output json`, `-o json` | Output the raw entitlement response. Nullable limits remain `null`, which means unlimited. |

<Info>
  This command is read-only. Use `kernel org limits set` to change the configurable default project concurrency cap.
</Info>

## `kernel org limits get`

Show the organization's effective concurrency limits, current browser usage, available capacity, and default per-project cap.

The JSON response includes `concurrent_sessions_used` and `concurrent_sessions_available`. Usage includes active on-demand browser sessions and browser pool reservations. Both fields are `null` when current usage can't be read.

| Flag                       | Description             |
| -------------------------- | ----------------------- |
| `--output json`, `-o json` | Output raw JSON object. |

```bash theme={null}
kernel org limits get --output json
```

## `kernel org limits set`

Set the default per-project concurrency cap. This default applies only to projects that don't have an explicit [project limit override](/reference/cli/projects#project-limits).

| Flag                                            | Description                                                                                                              |
| ----------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| `--default-project-max-concurrent-sessions <n>` | Default maximum concurrent browsers for projects without an explicit override. Pass `0` to remove the default. Required. |
| `--output json`, `-o json`                      | Output raw JSON object.                                                                                                  |

```bash theme={null}
# Give projects without an override a default cap of 20 sessions
kernel org limits set --default-project-max-concurrent-sessions 20

# Remove the default cap
kernel org limits set --default-project-max-concurrent-sessions 0
```

<Info>
  A project's explicit limit overrides this default. The organization's maximum concurrent sessions remains the upper bound.
</Info>
