Reserve an orb name in a namespace

## Usage

`circleci orb create <namespace>/<orb> [flags]`

## Arguments

- `<namespace>/<orb>` is the orb name to reserve, for example, `namespace/orb-name`.
  The namespace must already exist.

## Flags

| Flag          | Description                                                                       |
| ------------- | --------------------------------------------------------------------------------- |
| `--jq string` | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`      | Output as JSON                                                                    |
| `--private`   | create as a private orb                                                           |

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

## Examples

- Create a public orb: 
  `circleci orb create myorg/my-orb`
- Create a private orb: 
  `circleci orb create myorg/my-orb --private`
- Create and output as JSON: 
  `circleci orb create myorg/my-orb --json`

## Details

Reserve an orb name in the given namespace.

This registers the name without publishing any versions; publish them with
'circleci orb publish'. The namespace must already exist.

JSON fields: id, name, namespace, is_private

