From 9e3089e2b1b8776d23a035818ff48c347924b05a Mon Sep 17 00:00:00 2001 From: Herve Labas Date: Mon, 15 Jun 2026 20:55:04 +0200 Subject: [PATCH 1/2] =?UTF-8?q?docs(cli):=20document=20new=20commands=20fr?= =?UTF-8?q?om=20CLI=20v8.6=E2=80=938.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add documentation for CLI commands and flags introduced in recent releases so every command is covered: - test-sessions: add `list` subcommand (v8.5.0) and the `get --result, -r` flag (v8.7.0) - assets: new page documenting `list` and `download` (v8.8.0) - checks: add `delete` subcommand (v8.8.0) - account: add `members update` and `members delete` (v8.7.0) Register the new assets page in docs.json navigation. Co-Authored-By: Claude Opus 4.8 --- cli/checkly-account.mdx | 215 ++++++++++++++++++++++ cli/checkly-assets.mdx | 334 ++++++++++++++++++++++++++++++++++ cli/checkly-checks.mdx | 70 +++++++ cli/checkly-test-sessions.mdx | 226 ++++++++++++++++++++++- docs.json | 1 + 5 files changed, 845 insertions(+), 1 deletion(-) create mode 100644 cli/checkly-assets.mdx diff --git a/cli/checkly-account.mdx b/cli/checkly-account.mdx index 9e90c392..1c3d2110 100644 --- a/cli/checkly-account.mdx +++ b/cli/checkly-account.mdx @@ -28,6 +28,8 @@ npx checkly account [arguments] [options] | Subcommand | Description | |------------|-------------| | `members` | List account members and pending invites. | +| `members update` | Update an account member role. | +| `members delete` | Delete an account member. | | `plan` | Show your account plan, entitlements, and feature limits. | ## `checkly account members` @@ -231,6 +233,219 @@ Key fields: - **`length`** — number of items returned in the current response. - **`nextId`** — cursor for the next page. Use it with `--limit` and `--next-id`. +## `checkly account members update` + +The `checkly account members update` command is only available since CLI v8.7.0. + +Update an account member's role. Identify the member by email or user ID. By default, the command shows the change and prompts for confirmation before proceeding. + +**Usage:** + +```bash Terminal +npx checkly account members update --role= [options] +``` + +**Arguments:** + +| Argument | Description | +|----------|-------------| +| `member` | The account member email or user ID. | + +**Options:** + +| Option | Required | Description | +|--------|----------|-------------| +| `--role, -r` | Yes | New member role: `admin`, `read_write`, `read_run`, or `read_only`. | +| `--email` | - | Treat the member argument as an email address. | +| `--id` | - | Treat the member argument as a user ID. | +| `--force, -f` | - | Skip the confirmation prompt. | +| `--dry-run` | - | Preview what would happen without updating the member. | +| `--output, -o` | - | Output format: `table`, `json`, or `md`. Default: `table`. | + +### Members Update Options + + + +The new role to assign. Available values: `admin`, `read_write`, `read_run`, `read_only`. + +**Usage:** + +```bash Terminal +npx checkly account members update alex@example.com --role=read_write +npx checkly account members update alex@example.com -r admin +``` + + + + + +Treat the member argument as an email address. Use this to disambiguate when a value could be either an email or a user ID. Mutually exclusive with `--id`. + +**Usage:** + +```bash Terminal +npx checkly account members update alex@example.com --email --role=read_only +``` + + + + + +Treat the member argument as a user ID. Mutually exclusive with `--email`. + +**Usage:** + +```bash Terminal +npx checkly account members update usr_123 --id --role=read_only +``` + + + + + +Skip the confirmation prompt and update the member immediately. Useful in scripts and CI. + +**Usage:** + +```bash Terminal +npx checkly account members update alex@example.com --role=admin --force +``` + + + + + +Preview the role change without making any changes. + +**Usage:** + +```bash Terminal +npx checkly account members update alex@example.com --role=admin --dry-run +``` + + + + + +Set the output format. Use `json` for programmatic access or `md` for markdown. + +**Usage:** + +```bash Terminal +npx checkly account members update alex@example.com --role=admin --output=json +``` + + + +### Members Update Examples + +```bash Terminal +# Update a member's role by email (with a confirmation prompt) +npx checkly account members update alex@example.com --role=read_write + +# Update by user ID +npx checkly account members update usr_123 --id --role=admin + +# Preview the change without applying it +npx checkly account members update alex@example.com --role=admin --dry-run + +# Update without a confirmation prompt +npx checkly account members update alex@example.com --role=admin --force +``` + +## `checkly account members delete` + +The `checkly account members delete` command is only available since CLI v8.7.0. + +Delete an account member. Identify the member by email or user ID. By default, the command shows the member to be removed and prompts for confirmation before proceeding. + +**Usage:** + +```bash Terminal +npx checkly account members delete [options] +``` + +**Arguments:** + +| Argument | Description | +|----------|-------------| +| `member` | The account member email or user ID. | + +**Options:** + +| Option | Required | Description | +|--------|----------|-------------| +| `--email` | - | Treat the member argument as an email address. | +| `--id` | - | Treat the member argument as a user ID. | +| `--force, -f` | - | Skip the confirmation prompt. | +| `--dry-run` | - | Preview what would happen without deleting the member. | + +### Members Delete Options + + + +Treat the member argument as an email address. Use this to disambiguate when a value could be either an email or a user ID. Mutually exclusive with `--id`. + +**Usage:** + +```bash Terminal +npx checkly account members delete alex@example.com --email +``` + + + + + +Treat the member argument as a user ID. Mutually exclusive with `--email`. + +**Usage:** + +```bash Terminal +npx checkly account members delete usr_123 --id +``` + + + + + +Skip the confirmation prompt and delete the member immediately. Useful in scripts and CI. + +**Usage:** + +```bash Terminal +npx checkly account members delete alex@example.com --force +``` + + + + + +Preview the deletion without making any changes. + +**Usage:** + +```bash Terminal +npx checkly account members delete alex@example.com --dry-run +``` + + + +### Members Delete Examples + +```bash Terminal +# Delete a member by email (with a confirmation prompt) +npx checkly account members delete alex@example.com + +# Delete by user ID +npx checkly account members delete usr_123 --id + +# Preview the deletion without applying it +npx checkly account members delete alex@example.com --dry-run + +# Delete without a confirmation prompt +npx checkly account members delete alex@example.com --force +``` + ## `checkly account plan` Show your account plan, entitlements, and feature limits. The default view displays a summary of metered entitlements with their limits. Use `--output=json` for the full response including locations, feature flags, and upgrade URLs. diff --git a/cli/checkly-assets.mdx b/cli/checkly-assets.mdx new file mode 100644 index 00000000..65dc6c26 --- /dev/null +++ b/cli/checkly-assets.mdx @@ -0,0 +1,334 @@ +--- +title: checkly assets +description: 'List and download result assets such as logs, traces, videos, and screenshots.' +sidebarTitle: 'checkly assets' +--- + +Available since CLI v8.8.0. + +The `checkly assets` command lets you list and download result assets from the terminal. Assets are the artifacts produced by a check run or [test session](/detect/testing/overview/) result, such as logs, Playwright traces, videos, screenshots, packet captures, and reports. + +Every asset belongs to a single result. Identify that result with `--result-id` together with either `--check-id` (for a scheduled check result) or `--test-session-id` (for a test-session result). + + +Before using `checkly assets`, ensure you have: + +- Checkly CLI installed +- Valid Checkly account authentication (run `npx checkly login` if needed) +- A check result ID or test-session result ID, and its corresponding check ID or test session ID + +For additional setup information, see [CLI overview](/cli/overview). + + +## Usage + +```bash Terminal +npx checkly assets [options] +``` + +## Subcommands + +| Subcommand | Description | +|------------|-------------| +| `list` | List result assets. | +| `download` | Download result assets. | + +## `checkly assets list` + +List the assets available for a check result or a test-session result. Use filters to narrow by asset type or name, then copy the exact `Asset` value to use with `checkly assets download`. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= (--check-id= | --test-session-id=) [options] +``` + +**Options:** + +| Option | Required | Description | +|--------|----------|-------------| +| `--result-id` | Yes | Check result ID or test-session result ID. | +| `--check-id` | - | Check ID for a scheduled check result. Use one of `--check-id` or `--test-session-id`. | +| `--test-session-id` | - | Test session ID for a test-session result. Use one of `--check-id` or `--test-session-id`. | +| `--type` | - | Filter assets by type: `log`, `trace`, `video`, `screenshot`, `pcap`, `report`, `file`, or `all`. Default: `all`. | +| `--asset` | - | Filter assets by exact `Asset`/`Name` value or glob. | +| `--view` | - | Human output view: `table` or `tree`. Ignored with `--output json`. Default: `table`. | +| `--output, -o` | - | Output format: `table`, `json`, or `md`. Default: `table`. | + +### List Options + + + +The check result ID or test-session result ID to list assets for. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --check-id= +``` + + + + + +The check ID for a scheduled check result. Use exactly one of `--check-id` or `--test-session-id`. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --check-id= +``` + + + + + +The test session ID for a test-session result. Use exactly one of `--check-id` or `--test-session-id`. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --test-session-id= +``` + + + + + +Filter assets by type. Available values: `log`, `trace`, `video`, `screenshot`, `pcap`, `report`, `file`, `all`. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --check-id= --type=trace +``` + + + + + +Filter assets by their exact `Asset`/`Name` value, or by a glob pattern. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --check-id= --asset="trace.zip" +npx checkly assets list --result-id= --check-id= --asset="*.png" +``` + + + + + +Choose the human-readable view. Use `table` to see exact `Asset` values for download, or `tree` for a hierarchical overview. This flag is ignored when `--output=json`. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --check-id= --view=tree +``` + + + + + +Set the output format. Use `json` for programmatic access or `md` for markdown. + +**Usage:** + +```bash Terminal +npx checkly assets list --result-id= --check-id= --output=json +npx checkly assets list --result-id= --check-id= -o md +``` + + + +### List Examples + +```bash Terminal +# List all assets for a check result +npx checkly assets list --result-id= --check-id= + +# List all assets for a test-session result +npx checkly assets list --result-id= --test-session-id= + +# Show only traces +npx checkly assets list --result-id= --check-id= --type=trace + +# Filter assets by name with a glob +npx checkly assets list --result-id= --check-id= --asset="*.png" + +# Show a hierarchical tree view +npx checkly assets list --result-id= --check-id= --view=tree + +# Get the asset list as JSON +npx checkly assets list --result-id= --check-id= --output=json +``` + +## `checkly assets download` + +Download assets for a check result or a test-session result. You must select assets with `--type` or `--asset` — use `--type all` to download everything. By default, files are written to `./checkly-assets/-`. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= (--check-id= | --test-session-id=) (--type= | --asset=) [options] +``` + +**Options:** + +| Option | Required | Description | +|--------|----------|-------------| +| `--result-id` | Yes | Check result ID or test-session result ID. | +| `--check-id` | - | Check ID for a scheduled check result. Use one of `--check-id` or `--test-session-id`. | +| `--test-session-id` | - | Test session ID for a test-session result. Use one of `--check-id` or `--test-session-id`. | +| `--type` | - | Select assets by type: `log`, `trace`, `video`, `screenshot`, `pcap`, `report`, `file`, or `all`. | +| `--asset` | - | Select an asset by exact `Asset`/`Name` value or glob. | +| `--dir` | - | Directory to write assets into. Default: `./checkly-assets/-`. | +| `--force` | - | Overwrite existing files. Mutually exclusive with `--skip-existing`. | +| `--skip-existing` | - | Skip files that already exist. Mutually exclusive with `--force`. | +| `--output, -o` | - | Output format: `table` or `json`. Default: `table`. | + +Pass `--type` or `--asset` to select which assets to download. Use `--type all` to download all assets for the result. + +### Download Options + + + +The check result ID or test-session result ID to download assets from. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=all +``` + + + + + +The check ID for a scheduled check result. Use exactly one of `--check-id` or `--test-session-id`. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=all +``` + + + + + +The test session ID for a test-session result. Use exactly one of `--check-id` or `--test-session-id`. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --test-session-id= --type=all +``` + + + + + +Select assets by type. Available values: `log`, `trace`, `video`, `screenshot`, `pcap`, `report`, `file`, `all`. Use `--type all` to download every asset. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=video +``` + + + + + +Select a single asset by its exact `Asset`/`Name` value, or by a glob pattern. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --asset="trace.zip" +npx checkly assets download --result-id= --check-id= --asset="*.png" +``` + + + + + +Directory to write the downloaded assets into. When omitted, assets are written to `./checkly-assets/-`. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=all --dir=./artifacts +``` + + + + + +Overwrite existing files in the target directory. Cannot be combined with `--skip-existing`. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=all --force +``` + + + + + +Skip files that already exist in the target directory. Cannot be combined with `--force`. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=all --skip-existing +``` + + + + + +Set the output format. Use `json` for programmatic access, including the resolved directory and downloaded file paths. + +**Usage:** + +```bash Terminal +npx checkly assets download --result-id= --check-id= --type=all --output=json +``` + + + +### Download Examples + +```bash Terminal +# Download all assets for a check result +npx checkly assets download --result-id= --check-id= --type=all + +# Download all assets for a test-session result +npx checkly assets download --result-id= --test-session-id= --type=all + +# Download only traces +npx checkly assets download --result-id= --check-id= --type=trace + +# Download a single asset by name +npx checkly assets download --result-id= --check-id= --asset="trace.zip" + +# Write assets to a custom directory +npx checkly assets download --result-id= --check-id= --type=all --dir=./artifacts + +# Re-run without overwriting already-downloaded files +npx checkly assets download --result-id= --check-id= --type=all --skip-existing + +# Get the download result as JSON +npx checkly assets download --result-id= --check-id= --type=all --output=json +``` + +## Related Commands + +- [`checkly test-sessions`](/cli/checkly-test-sessions) - Inspect recorded test sessions and their results +- [`checkly checks`](/cli/checkly-checks) - List, inspect, and analyze checks and their results +- [`checkly rca`](/cli/checkly-rca) - Trigger root cause analysis for error groups diff --git a/cli/checkly-checks.mdx b/cli/checkly-checks.mdx index e48bb440..d6c2c1c8 100644 --- a/cli/checkly-checks.mdx +++ b/cli/checkly-checks.mdx @@ -30,6 +30,7 @@ npx checkly checks [arguments] [options] | `list` | List all checks in your account. | | `get` | Get details of a specific check, including recent results and analytics stats. | | `stats` | Show analytics stats for your checks. | +| `delete` | Delete a check by ID. | ## `checkly checks list` @@ -536,6 +537,75 @@ npx checkly checks stats --search="homepage" --output=json npx checkly checks stats --limit=10 --page=2 ``` +## `checkly checks delete` + +The `checkly checks delete` command is only available since CLI v8.8.0. + +Delete a check by ID. By default, the command shows the check to be deleted and prompts for confirmation before proceeding. + + +Checks managed by a CLI project are recreated on the next `checkly deploy`. To permanently remove a project-managed check, delete it from your project code instead of using this command. + + +**Usage:** + +```bash Terminal +npx checkly checks delete [options] +``` + +**Arguments:** + +| Argument | Description | +|----------|-------------| +| `id` | The ID of the check to delete. | + +**Options:** + +| Option | Required | Description | +|--------|----------|-------------| +| `--force, -f` | - | Skip the confirmation prompt. | +| `--dry-run` | - | Preview what would happen without deleting the check. | + +### Delete Options + + + +Skip the confirmation prompt and delete the check immediately. Useful in scripts and CI. + +**Usage:** + +```bash Terminal +npx checkly checks delete 12345 --force +npx checkly checks delete 12345 -f +``` + + + + + +Preview the deletion without making any changes. Shows the check that would be deleted. + +**Usage:** + +```bash Terminal +npx checkly checks delete 12345 --dry-run +``` + + + +### Delete Examples + +```bash Terminal +# Delete a check with a confirmation prompt +npx checkly checks delete 12345 + +# Preview the deletion without making changes +npx checkly checks delete 12345 --dry-run + +# Delete without a confirmation prompt +npx checkly checks delete 12345 --force +``` + ## Related Commands - [`checkly status-pages`](/cli/checkly-status-pages) - List and inspect status pages diff --git a/cli/checkly-test-sessions.mdx b/cli/checkly-test-sessions.mdx index a9cb92d5..dd95f20f 100644 --- a/cli/checkly-test-sessions.mdx +++ b/cli/checkly-test-sessions.mdx @@ -6,7 +6,7 @@ sidebarTitle: 'checkly test-sessions' Available since CLI v8.4.0. -The `checkly test-sessions` command lets you inspect recorded [test sessions](/detect/testing/overview/) from the terminal. Use it to review a session, wait for a running session to finish, or inspect a test session error group before starting root cause analysis. +The `checkly test-sessions` command lets you inspect recorded [test sessions](/detect/testing/overview/) from the terminal. Use it to list recent sessions, review a session, wait for a running session to finish, or inspect a test session error group before starting root cause analysis. Before using `checkly test-sessions`, ensure you have: @@ -28,8 +28,212 @@ npx checkly test-sessions [arguments] [options] | Subcommand | Description | |------------|-------------| +| `list` | List recorded test sessions. | | `get` | Get details of a recorded test session. | +## `checkly test-sessions list` + +The `checkly test-sessions list` command is only available since CLI v8.5.0. + +List recorded test sessions for the currently selected account. Use filters to narrow by status, branch, user, or provider, and cursor pagination to page through results. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list [options] +``` + +**Options:** + +| Option | Required | Description | +|--------|----------|-------------| +| `--limit, -l` | - | Number of test sessions to return (1-100). Default: `20`. | +| `--cursor` | - | Cursor for the next page (from previous output). | +| `--from` | - | Only include test sessions created at or after this ISO date or Unix timestamp. | +| `--to` | - | Only include test sessions created before this ISO date or Unix timestamp. | +| `--status` | - | Filter by status: `running`, `failed`, `passed`, or `cancelled`. Can be specified multiple times. | +| `--branch` | - | Filter by Git branch name. Can be specified multiple times. | +| `--user` | - | Filter by commit owner or invoking user ID. Can be specified multiple times. | +| `--no-users` | - | Include sessions with no commit owner and no invoking user. | +| `--provider` | - | Filter by provider: `github`, `vercel`, `api`, `trigger`, or `pw_reporter`. Can be specified multiple times. | +| `--search, -s` | - | Search test session text fields (3-200 characters). | +| `--error-group` | - | Filter by test-session error group ID. | +| `--output, -o` | - | Output format: `table`, `json`, or `md`. Default: `table`. | + +### List Options + + + +Number of test sessions to return, between 1 and 100. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --limit=50 +npx checkly test-sessions list -l 10 +``` + + + + + +Cursor for paginating through results. Use the cursor value from the previous output, or the next-page command shown in table output. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --limit=20 --cursor= +``` + + + + + +Only include test sessions created at or after this point in time. Accepts an ISO date (such as `2026-06-01`) or a Unix timestamp in seconds. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --from=2026-06-01 +``` + + + + + +Only include test sessions created before this point in time. Accepts an ISO date or a Unix timestamp in seconds. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --from=2026-06-01 --to=2026-06-15 +``` + + + + + +Filter sessions by status. Available values: `running`, `failed`, `passed`, `cancelled`. Specify multiple times to match more than one status. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --status=failed +npx checkly test-sessions list --status=failed --status=running +``` + + + + + +Filter sessions by Git branch name. Specify multiple times to match more than one branch. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --branch=main +npx checkly test-sessions list --branch=main --branch=staging +``` + + + + + +Filter sessions by commit owner or invoking user ID. Specify multiple times to match more than one user. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --user= +``` + + + + + +Include sessions that have no commit owner and no invoking user. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --no-users +``` + + + + + +Filter sessions by the provider that triggered them. Available values: `github`, `vercel`, `api`, `trigger`, `pw_reporter`. Specify multiple times to match more than one provider. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --provider=github +npx checkly test-sessions list --provider=trigger --provider=api +``` + + + + + +Search test session text fields. The query must be between 3 and 200 characters. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --search="checkout flow" +npx checkly test-sessions list -s "homepage" +``` + + + + + +Filter sessions by a test-session error group ID. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --error-group= +``` + + + + + +Set the output format. Use `json` for programmatic access or `md` for markdown. + +**Usage:** + +```bash Terminal +npx checkly test-sessions list --output=json +npx checkly test-sessions list -o md +``` + + + +### List Examples + +```bash Terminal +# List recent test sessions +npx checkly test-sessions list + +# Show only failed sessions +npx checkly test-sessions list --status=failed + +# Filter by branch and provider +npx checkly test-sessions list --branch=main --provider=github + +# Filter by a time range +npx checkly test-sessions list --from=2026-06-01 --to=2026-06-15 + +# Get results as JSON +npx checkly test-sessions list --output=json + +# Page through results +npx checkly test-sessions list --limit=20 --cursor= +``` + ## `checkly test-sessions get` Get details of a recorded test session, including result error groups for RCA. @@ -50,6 +254,7 @@ npx checkly test-sessions get [options] | Option | Required | Description | |--------|----------|-------------| +| `--result, -r` | - | Show details for a specific test session result ID. | | `--error-group` | - | Show details for a test session error group ID from this session. | | `--error-groups-limit` | - | Number of error group IDs to show in the session summary. Default: `5`. | | `--full-error` | - | Print the complete raw error when showing a test session error group. | @@ -58,6 +263,21 @@ npx checkly test-sessions get [options] ### Get Options + + +Available in CLI v8.7.0+. + +Drill into a specific test session result by its result ID. Shows detailed information for that result, including logs and timing data. + +**Usage:** + +```bash Terminal +npx checkly test-sessions get --result= +npx checkly test-sessions get -r +``` + + + Show details for a test session error group from the selected session. Use this after the session summary shows one or more error group IDs. @@ -131,6 +351,9 @@ npx checkly test-sessions get # Wait for a running test session to complete npx checkly test-sessions get --watch +# Drill into a specific result +npx checkly test-sessions get --result= + # Inspect a test session error group npx checkly test-sessions get --error-group= @@ -143,3 +366,4 @@ npx checkly test-sessions get --output=json - [`checkly trigger`](/cli/checkly-trigger) - Trigger deployed checks as a test session - [`checkly test`](/cli/checkly-test) - Test local checks as a test session - [`checkly rca`](/cli/checkly-rca) - Trigger root cause analysis for error groups +- [`checkly assets`](/cli/checkly-assets) - List and download result assets from a test session diff --git a/docs.json b/docs.json index 3307152e..861d05a3 100644 --- a/docs.json +++ b/docs.json @@ -549,6 +549,7 @@ "pages": [ "cli/checkly-account", "cli/checkly-api", + "cli/checkly-assets", "cli/checkly-checks", "cli/checkly-deploy", "cli/checkly-destroy", From 7e0931bc1cc4ee2d0b1b5799f0fb090a4c9f0ae2 Mon Sep 17 00:00:00 2001 From: Herve Labas Date: Mon, 15 Jun 2026 22:11:28 +0200 Subject: [PATCH 2/2] chore: re-trigger Mintlify build Co-Authored-By: Claude Opus 4.8