From 68b1815471c66aabcd6345df4d0992726c838509 Mon Sep 17 00:00:00 2001 From: dprevoznik <58714078+dprevoznik@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:32:02 +0000 Subject: [PATCH 1/4] Document kernel profiles download and delete commands --- reference/cli/browsers.mdx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/reference/cli/browsers.mdx b/reference/cli/browsers.mdx index 50a7434..66b8a4a 100644 --- a/reference/cli/browsers.mdx +++ b/reference/cli/browsers.mdx @@ -501,3 +501,18 @@ Create a new browser profile. |------|-------------| | `--name ` | Optional unique name for the profile. | | `--output json`, `-o json` | Output raw JSON object. | + +### `kernel profiles download ` +Download a profile as a ZIP archive. + +| Flag | Description | +|------|-------------| +| `--to ` | Output zip file path. Required. | +| `--pretty` | Pretty-print JSON to file. | + +### `kernel profiles delete ` +Delete a profile by ID or name. + +| Flag | Description | +|------|-------------| +| `--yes`, `-y` | Skip confirmation prompt. | From 5e3223b86a7fa435bd585fbeb6c6a8e67d4faa39 Mon Sep 17 00:00:00 2001 From: dprevoznik <58714078+dprevoznik@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:40:14 +0000 Subject: [PATCH 2/4] Include all flags from CLI help for download and delete --- reference/cli/browsers.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/reference/cli/browsers.mdx b/reference/cli/browsers.mdx index 66b8a4a..0222c40 100644 --- a/reference/cli/browsers.mdx +++ b/reference/cli/browsers.mdx @@ -509,6 +509,11 @@ Download a profile as a ZIP archive. |------|-------------| | `--to ` | Output zip file path. Required. | | `--pretty` | Pretty-print JSON to file. | +| `--project ` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). | +| `--log-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 ` Delete a profile by ID or name. @@ -516,3 +521,8 @@ Delete a profile by ID or name. | Flag | Description | |------|-------------| | `--yes`, `-y` | Skip confirmation prompt. | +| `--project ` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). | +| `--log-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. | From 8a4efe077497214849a6974a62e4ec1c386b59eb Mon Sep 17 00:00:00 2001 From: dprevoznik <58714078+dprevoznik@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:43:00 +0000 Subject: [PATCH 3/4] Drop global flags from profiles download/delete tables --- reference/cli/browsers.mdx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/reference/cli/browsers.mdx b/reference/cli/browsers.mdx index 0222c40..c240187 100644 --- a/reference/cli/browsers.mdx +++ b/reference/cli/browsers.mdx @@ -510,10 +510,6 @@ Download a profile as a ZIP archive. | `--to ` | Output zip file path. Required. | | `--pretty` | Pretty-print JSON to file. | | `--project ` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). | -| `--log-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 ` Delete a profile by ID or name. @@ -522,7 +518,3 @@ Delete a profile by ID or name. |------|-------------| | `--yes`, `-y` | Skip confirmation prompt. | | `--project ` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). | -| `--log-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. | From 253b7752d4a59060ef01ef2516b9380eec940070 Mon Sep 17 00:00:00 2001 From: dprevoznik <58714078+dprevoznik@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:48:38 +0000 Subject: [PATCH 4/4] Drop --project flag for consistency with other commands --- reference/cli/browsers.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/reference/cli/browsers.mdx b/reference/cli/browsers.mdx index c240187..66b8a4a 100644 --- a/reference/cli/browsers.mdx +++ b/reference/cli/browsers.mdx @@ -509,7 +509,6 @@ Download a profile as a ZIP archive. |------|-------------| | `--to ` | Output zip file path. Required. | | `--pretty` | Pretty-print JSON to file. | -| `--project ` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). | ### `kernel profiles delete ` Delete a profile by ID or name. @@ -517,4 +516,3 @@ Delete a profile by ID or name. | Flag | Description | |------|-------------| | `--yes`, `-y` | Skip confirmation prompt. | -| `--project ` | Project ID or name to scope the request to (or set `KERNEL_PROJECT`). |