Delete a context

## Usage

`circleci context delete <context-id|context-name> [flags]`

Aliases: `circleci context rm`

## Arguments

A context can be specified by name or ID:
- By name, for example, `context-name`
- By ID, for example, `849e7902-802f-4082-8a70-da77dcd084e3`

## Flags

| Flag           | Description                                                       |
| -------------- | ----------------------------------------------------------------- |
| `-f, --force`  | skip confirmation prompt                                          |
| `--org string` | Organization slug (e.g. gh/myorg); used when resolving name to ID |

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

## Examples

- Delete a context by UUID (with confirmation): 
  `circleci context delete ctx-uuid-here`
- Delete a context by name (org inferred from git remote): 
  `circleci context delete my-context`
- Delete a context by name in a specific org, without confirmation: 
  `circleci context delete my-context --org gh/myorg --force`

## Details

Delete a CircleCI context by UUID or name.

Deleting a context removes all environment variables stored in it.
Jobs that reference this context will fail until they are updated.

