Get policy enforcement settings

## Usage

`circleci policy settings get [flags]`

## 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 (required)                              |
| `--policy-context string` | Policy context (default "config")                                                 |

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

## Examples

- Get policy enforcement settings: 
  `circleci policy settings get --org gh/acme`
- Output as JSON: 
  `circleci policy settings get --org gh/acme --json`
- Use with jq to extract the enabled field: 
  `circleci policy settings get --org gh/acme --json --jq '.enabled'`

## Details

Retrieve the current policy enforcement settings for an organization.

JSON fields: enabled

