Get the current value of an org setting

## Usage

`circleci org setting get <setting> [flags]`

## Arguments

`<setting>` is one of: ai-error-summarization, ai-agents, unversioned-config, certified-public-orbs, chunk-ip-ranges, minor-ai-features, private-orbs, uncertified-public-orbs, bitbucket-workspace-member-is-org-member, disable-user-checkout-keys, disable-running, image-brownouts, context-group-restriction, resource-class-brownouts, runner-tos-accepted.

Run `circleci org setting list` for each setting's description and current value.

## Flags

| Flag           | Description                                                                       |
| -------------- | --------------------------------------------------------------------------------- |
| `--jq string`  | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`       | Output as JSON                                                                    |
| `--org string` | Organization slug (e.g. gh/myorg) or UUID; defaults to git remote                 |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Get a setting for the current org: 
  `circleci org setting get private-orbs`
- Get a setting for a specific org: 
  `circleci org setting get private-orbs --org gh/myorg`
- Output as JSON: 
  `circleci org setting get private-orbs --json`

## Details

Get the current value of an advanced org setting.

JSON fields: name, value

