Set an org setting

## Usage

`circleci org setting set <setting> <true|false> [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.

`<true|false>` is the new value. 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

- Enable a setting for the current org: 
  `circleci org setting set private-orbs true`
- Disable a setting for a specific org: 
  `circleci org setting set private-orbs false --org gh/myorg`
- Output the updated value as JSON: 
  `circleci org setting set ai-error-summarization true --json`

## Details

Set an advanced org setting to true or false.

JSON fields: name, value

