Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reference/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ kernel --version
<Card icon="key" title="API Keys" href="/reference/cli/api-keys">
Create, inspect, rotate, rename, and delete API keys.
</Card>
<Card icon="building" title="Organization Limits" href="/reference/cli/org">
View and configure organization concurrency limits.
<Card icon="building" title="Organization" href="/reference/cli/org">
Inspect effective entitlements and configure concurrency limits.
</Card>
<Card icon="clock-rotate-left" title="Audit Logs" href="/reference/cli/audit-logs">
Search and download organization audit logs.
Expand Down
23 changes: 21 additions & 2 deletions reference/cli/org.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
---
title: "Organization Limits"
title: "Organization"
---

Manage organization-wide concurrency limits and the default cap applied to projects without an explicit override.
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
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`

Expand Down
Loading