Create a new context

## Usage

`circleci context create <name> [flags]`

## Arguments

`<name>` is the name for the new context, for example, `build-secrets`.

## 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); defaults to git remote                         |

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

## Examples

- Create a context for the org inferred from git remote: 
  `circleci context create my-context`
- Create a context for a specific organization: 
  `circleci context create my-context --org gh/myorg`
- Create and capture the ID: 
  `circleci context create my-context --org gh/myorg --json --jq '.id'`

## Details

Create a new CircleCI context for an organization.

JSON fields: id, name, created_at

