Get the current value of a project setting

## Usage

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

## Arguments

`<setting>` is one of: build-forked-pull-requests, forks-receive-secret-env-vars, oss, auto-cancel-builds, set-github-status, build-prs-only, disable-ssh, write-settings-requires-admin, ai-error-summarization, dynamic-config, unversioned-config, disable-running.

Run `circleci project 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                                                                    |
| `--project string` | Project slug (e.g. gh/org/repo); defaults to git remote                           |

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

## Examples

- Get a setting for the current project: 
  `circleci project setting get build-forked-pull-requests`
- Get a setting for a specific project: 
  `circleci project setting get build-forked-pull-requests --project gh/myorg/myrepo`
- Output as JSON: 
  `circleci project setting get build-forked-pull-requests --json`

## Details

Get the current value of an advanced project setting.

JSON fields: name, value

