Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions reference/cli/browsers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -501,3 +501,28 @@ Create a new browser profile.
|------|-------------|
| `--name <name>` | Optional unique name for the profile. |
| `--output json`, `-o json` | Output raw JSON object. |

### `kernel profiles download <id-or-name>`
Download a profile as a ZIP archive.

| Flag | Description |
|------|-------------|
| `--to <path>` | Output zip file path. Required. |
| `--pretty` | Pretty-print JSON to file. |
| `--project <id-or-name>` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). |
| `--log-level <level>` | Set log verbosity (`trace`, `debug`, `info`, `warn`, `error`, `fatal`, `print`). |
| `--no-color` | Disable ANSI colors in output. |
| `--help`, `-h` | Help for `download`. |
| `--version`, `-v` | Print the CLI version. |

### `kernel profiles delete <id-or-name>`
Delete a profile by ID or name.

| Flag | Description |
|------|-------------|
| `--yes`, `-y` | Skip confirmation prompt. |
| `--project <id-or-name>` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). |
| `--log-level <level>` | Set log verbosity (`trace`, `debug`, `info`, `warn`, `error`, `fatal`, `print`). |
| `--no-color` | Disable ANSI colors in output. |
| `--help`, `-h` | Help for `delete`. |
| `--version`, `-v` | Print the CLI version. |
Loading