Hide or restore an orb in the registry

## Usage

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

## Arguments

- `<namespace>/<orb>` is the orb to update, for example, `namespace/orb-name`

## Flags

| Flag        | Description                                       |
| ----------- | ------------------------------------------------- |
| `--restore` | restore the orb's visibility instead of hiding it |

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

## Examples

- Hide an orb from the registry: 
  `circleci orb unlist myorg/my-orb`
- Restore an orb's visibility: 
  `circleci orb unlist myorg/my-orb --restore`

## Details

Control whether an orb is visible in the CircleCI orb registry.

By default, hides the orb (unlists it from search results).
Pass --restore to make the orb visible again.

Unlisted orbs can still be used if you know the exact orb reference.

