Navigation
Getting Started
Guides
Integrations
Reference
CLI
Complete reference for the Yorker CLI: all commands, flags, and environment variables.
CLI
The Yorker CLI manages monitors, alerts, SLOs, notification channels, and private locations. Use it for infrastructure-as-code deployments from yorker.config.yaml, or manage resources imperatively with CRUD commands.
Installation
Install globally with npm:
npm install -g @yorker/cliOn macOS or Linux you can also install with Homebrew:
brew install reverse-sweep-ltd/tap/yorkerOr locally in a project:
npm install --save-dev @yorker/cliAuthentication
For interactive use, run yorker login. The CLI prints a short XXXX-XXXX confirmation code, opens your browser, and waits for you to click Authorize. On success it stores a fresh API key at ~/.yorker/credentials (mode 0600).
yorker loginFor CI, Docker, and other headless contexts, set YORKER_API_KEY instead. Generate a key from Settings > API Keys in the dashboard:
export YORKER_API_KEY=sk_your_key_hereThe CLI resolves auth in this order on every invocation:
YORKER_API_KEYenvironment variable~/.yorker/credentials(written byyorker login)- Otherwise, the command exits with code
2(authentication failure).
The same precedence applies to the API URL via --api-url, YORKER_API_URL, the persisted file, then the default https://yorkermonitoring.com.
Global Flags
These flags are available on every command:
| Flag | Description |
|---|---|
--json | Output in structured JSON format. |
--quiet | Suppress non-essential output. |
--no-color | Disable colored output. |
--verbose | Enable verbose/debug output. |
--api-url <url> | Control plane URL (default: https://yorkermonitoring.com). Also settable via YORKER_API_URL. |
--help, -h | Show help. |
--version, -V | Show version. |
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
YORKER_API_KEY | Yes, unless logged in via yorker login | - | API key for authentication. Keys start with sk_. |
YORKER_API_URL | No | https://yorkermonitoring.com | Control plane base URL. Override for self-hosted or development. |
Exit Codes
| Code | Meaning |
|---|---|
0 | Success. |
1 | General error (validation failure, API error, missing config). |
2 | Authentication failure (invalid or missing API key). |
3 | Plan/quota limit exceeded. |
4 | Partial failure (some operations succeeded, others failed). |
5 | Drift detected: remote resources were modified outside the CLI. |
10 | yorker status reports one or more unhealthy monitors. |
Commands
yorker login
Authenticate the CLI by approving access in your browser.
yorker login [--force]The CLI uses a device-code flow:
- The CLI calls the server to get a fresh
XXXX-XXXXconfirmation code that expires in 10 minutes. - It prints the code in your terminal and opens your browser to the consent page.
- You sign in (if you weren't already), confirm the code in the browser matches the one in your terminal, then click Authorize.
- The CLI polls every 2 seconds for the result. On success it picks up a fresh API key labelled
CLI <hostname>and writes it to~/.yorker/credentialswith mode0600.
Confirming the code is the phishing protection. If the code in the browser doesn't match the one in your terminal, you are on a different device's consent page; cancel and run yorker login again. You can revoke the key any time from Settings > API Keys, or with yorker logout --revoke.
If ~/.yorker/credentials already exists, yorker login exits without re-authenticating. Pass --force to mint a new key and overwrite the file.
| Flag | Description |
|---|---|
--force | Re-authenticate and overwrite existing credentials. |
The standard global flags --api-url, --json, and --quiet work here too. Use --api-url to authenticate against a non-default control plane (e.g. self-hosted or staging).
Auth resolution order
The CLI looks up auth in this order on every invocation, including immediately after yorker login:
YORKER_API_KEYenvironment variable~/.yorker/credentials- Otherwise, the command exits with code
2(authentication failure).
This means a YORKER_API_KEY set in your shell wins over a stored credential. If you want to switch teams temporarily, set the env var; to switch permanently, run yorker logout then yorker login again.
Example output
TTY success path:
Yorker login
Open this URL in your browser:
https://yorkermonitoring.com/cli/auth?code=ABCD-EFGH
Confirm this code matches the one shown there:
┌─────────────┐
│ ABCD-EFGH │
└─────────────┘
Waiting for authorization...
✓ Logged in
Saved credentials to /Users/you/.yorker/credentials
Next steps:
1. yorker init scaffold a yorker.config.yaml
2. yorker deploy push monitors to https://yorkermonitoring.com
--json output
{
"ok": true,
"data": {
"apiUrl": "https://yorkermonitoring.com",
"credentialsPath": "/Users/you/.yorker/credentials",
"createdAt": "2026-05-09T14:23:00.000Z"
}
}When credentials already exist and --force is not set, the JSON envelope is { "ok": true, "data": { "alreadyLoggedIn": true, "credentialsPath": "..." } }.
Stdout receives exactly one JSON envelope per invocation (the success or error result). After the device code is minted, a one-line progress event is written to stderr so CI scripts that want the verification URL can read it without affecting the parseable stdout payload:
{"event":"awaiting_consent","code":"ABCD-EFGH","verification_url":"https://yorkermonitoring.com/cli/auth?code=ABCD-EFGH"}
Subsequent commands use the persisted credential unless YORKER_API_KEY is set in the env, which always wins (see Auth resolution order).
Error envelope
When login fails (the 10-minute code TTL was reached without authorization, a network error during init, etc.), the JSON envelope is:
{
"ok": false,
"error": {
"code": "general_error",
"message": "Login session expired. Run `yorker login` again.",
"details": {
"exitCode": 1
}
}
}The same envelope shape is used for every CLI command in --json mode. The code field uses the strings from the exit code table (auth_failure for code 2, plan_limit for code 3, etc.).
Stale-tab safety
The consent page only mints a key when you click Authorize, so closing the tab before clicking does not produce an orphaned key. The code expires after 10 minutes, after which the CLI prints a clean error and you can run yorker login again. Each run mints a fresh code, so an old verification URL pulled from your browser history will simply land on a "Code expired" page instead of authorizing access.
yorker logout
Sign out by deleting local credentials.
yorker logout [--revoke]Removes ~/.yorker/credentials. The API key remains valid on the server unless you also pass --revoke, which calls DELETE /api/api-keys/self to delete the key on the server. The endpoint identifies the key from the Authorization header, so no key ID has to be supplied; the row whose hash matches the bearer token is removed. Revoke is best-effort: if the network call fails, the local file is still removed so you do not get stuck holding a credential the CLI considers active. After --revoke succeeds, the key cannot be reused.
| Flag | Description |
|---|---|
--revoke | Also delete the API key on the server (via /api/api-keys/self). Best-effort; the local file is removed even if the server call fails. |
--json and --quiet work as on every other command.
--json output
{
"ok": true,
"data": {
"removed": true,
"revoked": true,
"revokeError": null,
"credentialsPath": "/Users/you/.yorker/credentials"
}
}alreadyLoggedOut: true is added when the local file did not exist. When --revoke is set and the server call fails, revoked is false and revokeError is a string describing the failure (the local file is still removed).
Error envelope
{
"ok": false,
"error": {
"code": "general_error",
"message": "...",
"details": { "exitCode": 1 }
}
}yorker init
Scaffold a new monitoring config in the current directory. Interactive prompts guide you through project name, first monitor URL, type, and frequency. In non-interactive contexts (CI, --json, or a non-TTY shell) you must pass --url (and optionally the other fields) as flags or the command errors out.
yorker init [--name <name>] [--url <url>] [--type <type>] [--frequency <freq>] [--format file|directory] [--force]| Flag | Description |
|---|---|
--name <name> | Project name (skips prompt). |
--url <url> | First monitor URL (skips prompt). Required in non-interactive contexts. |
--type <type> | Monitor type: http, browser, or mcp (skips prompt). Default: http. |
--frequency <freq> | Check frequency, e.g. 30s, 5m, 1h (skips prompt). Default: 5m. |
--format <format> | Output layout: file (a single yorker.config.yaml, the default) or directory (a .yorker/ directory with one YAML file per resource). |
--force | Overwrite existing config without asking. |
The generated config uses a single default location (loc_us_east) and the frequency you choose. Free-tier accounts support one location per check; edit the file to add more locations on a paid plan. HTTP monitors get a starter status_code: 200 assertion; browser monitors get a ./monitors/<name>.ts script stub placeholder; MCP monitors just get the endpoint URL.
yorker deploy
Push your local yorker.config.yaml to the control plane. Computes a diff against remote state, displays a Terraform-style plan, and applies changes.
yorker deploy [--dry-run] [--prune] [--force] [--accept-remote] [--wait]| Flag | Description |
|---|---|
--dry-run | Show the deploy plan without applying changes. |
--prune | Delete remote resources not defined in the local config. |
--force | Overwrite remote changes (ignore drift). Local config wins. |
--accept-remote | Skip drifted resources, keeping their remote changes. |
--wait | After a successful create, poll for the first check result from each new monitor (3-minute overall timeout). Exits with code 4 (PARTIAL_FAILURE) if any new check's first result is a failure, or if waiting for a first result times out. Useful in CI to catch broken monitors before merging. |
--forceand--accept-remoteare mutually exclusive: pass one or the other, not both.
Deploy pipeline
- Load: reads
yorker.config.yamlfrom the current directory. - Interpolate: resolves
{{secrets.NAME}},{{env.NAME}}, and${NAME}placeholders from environment variables. - Validate: parses every resource through shared Zod schemas. Fails with all errors collected.
- Resolve: applies cascading defaults (defaults to group to monitor), reads browser script files, builds API payloads.
- Fetch remote state: gets all checks, alerts, SLOs, channels, and maintenance windows from the API.
- Detect drift: compares remote
updatedAttimestamps against the stored deploy state. See Drift detection below. - Compute plan: field-level diffs between local and remote state.
- Display plan: Terraform-style plan output.
- Apply: if not
--dry-run, applies changes in ordered phases. - Save state: writes
.yorker/.deploy-state.jsonwith config hashes and remote timestamps.
Deploy phases
Changes are applied in dependency order:
| Phase | Action | Why |
|---|---|---|
| 0 | Create/update notification channels | Channels must exist before alerts or SLOs reference them. |
| A | Delete SLOs | Must be deleted before their parent checks. |
| B | Delete alerts | Must be deleted before their parent checks. |
| C | Delete checks | Safe after dependent resources removed. |
| D+E | Create and update checks | New checks get server-assigned IDs needed by alerts and SLOs. |
| E2 | Sync check labels | Labels are a separate API, applied after checks exist so new check IDs are known. |
| F | Create/update alerts | Alerts reference check IDs and channel IDs. |
| G | Create/update SLOs | SLOs reference check IDs and channel IDs. |
| H | Create/update maintenance windows | Maintenance windows reference check IDs, so they run after checks exist. |
| I | Delete maintenance windows (only with --prune) | Stale maintenance windows are only removed when you opt in via --prune. |
| Z | Delete channels | Runs last so alerts/SLOs referring to channels are gone first. Delete only runs when --prune is set, or when a channel's type changed in YAML (type changes require delete-and-recreate). |
Plan output
Yorker deploy plan for "my-project"
Channels:
+ CREATE "ops-slack"
= UNCHANGED "team-email"
Checks:
+ CREATE http "Users API" (60s, 3 locations)
~ UPDATE http "Homepage"
~ configJson.timeoutMs 30000 -> 15000
- DELETE http "Old Endpoint"
= UNCHANGED http "Orders API"
Alerts:
+ CREATE "api-down" (Users API)
SLOs:
~ UPDATE "Homepage SLO"
~ targetBasisPoints 9990 -> 9995
Summary: 2 to create, 2 to update, 1 to delete, 2 unchanged
| Symbol | Meaning |
|---|---|
+ CREATE | Resource will be created. |
~ UPDATE | Resource will be updated. Field-level diffs shown below. |
- DELETE | Resource will be deleted (requires --prune or type change). |
= UNCHANGED | No action needed. |
Drift detection
The CLI tracks the state of each resource after every deploy in .yorker/.deploy-state.json. On the next deploy, it compares remote updatedAt timestamps against the stored state to detect resources modified outside the CLI (e.g., via the web UI).
| Local changed? | Remote changed? | Result |
|---|---|---|
| No | No | Unchanged; skip. |
| Yes | No | Normal update; proceed. |
| No | Yes | Drift: remote was edited outside the CLI. |
| Yes | Yes | Conflict: both local config and remote were changed. |
If drift or conflicts are detected, the deploy aborts with a report:
Warning: 1 drifted, 1 conflicting resource(s) modified outside config
Checks:
! DRIFT "api-health" (remote changed since last deploy)
Alerts:
! CONFLICT "api-health:latency" (both local and remote changed)
Use --force to overwrite remote changes, or --accept-remote to keep them.
Resolution options:
| Flag | Behavior |
|---|---|
| (default) | Abort with drift/conflict report. |
--force | Local config wins; overwrite remote changes. |
--accept-remote | Skip drifted/conflicting resources; keep remote as-is. |
The deploy state file .yorker/.deploy-state.json is per-machine state. Add it to your .gitignore to avoid committing it. Every successful yorker pull rewrites this file with a fresh snapshot of remote state, so the next deploy treats everything as a clean baseline.
yorker diff
Show changes between local config and remote state without applying them.
yorker diffDisplays the same Terraform-style plan as yorker deploy --dry-run. Designed for CI pipelines and quick checks. See CI/CD Integration for full workflow examples.
yorker pull
Export remote monitors, alerts, SLOs, and notification channels to a local config. The reverse of yorker deploy.
yorker pull [--output <path>] [--format file|directory] [--monitor <name>] [--force]| Flag | Description |
|---|---|
-o, --output <path> | Output path. Default: yorker.config.yaml in file format, or .yorker/ in directory format. |
--format <format> | Output layout: file (single yorker.config.yaml, default) or directory (a .yorker/ tree with one YAML file per resource). |
--monitor <name> | Pull a single monitor by name or ID. |
--force | Overwrite existing config file and scripts. |
Fetches all monitors, alerts, SLOs, and notification channels and writes a config file that yorker deploy can consume. Browser monitor scripts are extracted to ./monitors/<slug>.ts, where <slug> is the monitor name lowercased with non-alphanumeric characters replaced by hyphens (e.g., Login Flow becomes login-flow.ts).
yorker pulldoes not export maintenance windows and overwrites your entire config file. If you manage maintenance windows through YAML, runningpullwill erase them from your local file (remote maintenance windows are not touched, but they will not reappear in the re-pulled YAML). If you need to round-trip safely, either avoidpullon projects that usemaintenanceWindows, or re-add them to the YAML after each pull. A subsequentyorker deploywithout--pruneleaves remote maintenance windows alone;yorker deploy --prunewill delete any remote maintenance windows that are not in the (now empty) local YAML.
yorker import
Coming soon. The
importcommand is a scaffold today: running it reports the selected source, the source and output paths, and a link to the changelog where the release will land, then exits with code1. The importers themselves ship in a follow-up release.
Import existing monitors from another synthetic monitoring tool into a Yorker config. The resulting YAML is ready to deploy with yorker deploy, with inline TODO comments on anything that doesn't translate cleanly.
yorker import --from <source> [--output <path>] [path]| Flag / Argument | Description |
|---|---|
--from <source> | Required. Source tool to import from. See supported sources below. |
--output <path> | Directory to write the generated Yorker YAML into. Default: . (current directory). |
[path] | Path to the source repo or config file (e.g. ./src/__checks__ for Checkly, ./tests for a Playwright project). |
Supported sources (planned):
| Source | --from value |
|---|---|
| Checkly | checkly |
| Datadog Synthetics | datadog-synthetics |
| Better Stack | better-stack |
| Pingdom | pingdom |
| Grafana Synthetic Monitoring | grafana-synthetic-monitoring |
| Playwright | playwright |
Example (once available):
# Import a Checkly project
yorker import --from checkly ./src/__checks__
# Import a Playwright test suite as browser monitors
yorker import --from playwright ./tests --output ./yorker/Watch the changelog for release dates. Until the importers land, the comparison pages document the migration story for each source.
yorker validate
Validate your config without deploying. Runs the full load, interpolate, and validate pipeline without contacting the API.
yorker validateValidation includes YAML syntax, Zod schema validation, secret interpolation, browser script file existence, frequency range checks, name uniqueness, SLO/alert cross-references, channel resolution, and maintenance-window time ranges.
Config is valid: 5 monitor(s), 2 SLO(s)
On failure, all errors are collected:
3 config error(s):
monitors[Homepage].httpConfig.url: Invalid url
monitors[Login Flow]: cannot read script file "./monitors/missing.ts"
slos[API SLO]: references monitor "Nonexistent" which does not exist
yorker status
Show a status overview of all monitors.
yorker status [--watch] [--interval <duration>]| Flag | Description |
|---|---|
--watch | Continuously refresh. In an interactive TTY the screen is cleared and redrawn in place. In --json mode each cycle emits a single newline-delimited JSON object. When stdout is piped (non-TTY, non-JSON), each snapshot is appended with a --- Status @ <ISO-timestamp> --- header. Press Ctrl+C to exit. |
--interval <duration> | Refresh interval for --watch (default: 30s, range: 5s to 1h). Ignored without --watch. |
Displays each monitor with its enabled/paused state, type, frequency, health, and recent-result sparkline. Exits with code 10 when any monitor is unhealthy.
yorker dashboard
Open an interactive full-screen status dashboard in your terminal. Polls the API on a configurable interval and renders monitor health, recent results, and sparklines.
yorker dashboard [--interval <duration>]| Flag | Description |
|---|---|
--interval <duration> | Refresh interval (default: 30s, range: 5s to 1h). |
Keybindings (list view):
| Key | Action |
|---|---|
↑ / k | Move selection up |
↓ / j | Move selection down |
Enter | Open detail view for the selected monitor |
/ | Filter monitors by name |
r | Refresh now (outside the polling interval) |
q / Ctrl+C | Quit |
In the detail view, press Esc to return to the list, q to quit, or r to refresh.
This is the interactive TUI (singular dashboard). For installing HyperDX / ClickStack dashboard packs, see yorker dashboards install below.
yorker dashboards install
Install pre-built Yorker dashboards into HyperDX (self-hosted) or ClickStack Cloud. See Install Dashboards for full setup.
# Self-hosted HyperDX
yorker dashboards install --hyperdx-api-key <your-key>
# ClickStack Cloud
yorker dashboards install --mode clickstack_cloud \
--clickstack-org-id <org-uuid> \
--clickstack-service-id <service-uuid> \
--clickstack-api-key-id <key-id> \
--clickstack-api-secret <key-secret>| Flag | Description |
|---|---|
--mode <mode> | self_hosted (default) or clickstack_cloud (env: HYPERDX_MODE) |
--hyperdx-api-key <key> | HyperDX API key for self-hosted mode (env: HYPERDX_API_KEY) |
--hyperdx-url <url> | Override HyperDX API URL for self-hosted (default: https://www.hyperdx.io) |
--clickstack-org-id <id> | ClickHouse Cloud organization ID (env: CLICKSTACK_ORG_ID) |
--clickstack-service-id <id> | ClickHouse Cloud service ID (env: CLICKSTACK_SERVICE_ID) |
--clickstack-api-key-id <id> | ClickHouse Cloud API key ID (env: CLICKSTACK_API_KEY_ID) |
--clickstack-api-secret <secret> | ClickHouse Cloud API key secret (env: CLICKSTACK_API_SECRET) |
--packs <list> | Comma-separated subset: overview, deep-dive, slo, events, performance-forensics, third-party, anomaly-insights, tls-health |
--force | Skip duplicate check (may create additional copies) |
yorker log
View config change history. Shows what changed, when, and how.
yorker log [--type <type>] [--name <name>] [--source <source>] [--limit <n>] [--offset <n>]| Flag | Description |
|---|---|
--type <type> | Filter by resource type (check, alert, slo, channel). |
--name <name> | Filter by resource name (case-insensitive substring match). |
--source <source> | Filter by change source (ui, yaml, api). |
--limit <n> | Number of changes to show (default: 20, max: 200). |
--offset <n> | Skip first N changes for pagination (cannot be used together with --name). |
Config changes (showing 5):
Time Action Type Name Source
2m ago create check api-health yaml
5m ago update alert api-health:p95 ui
1h ago delete channel old-slack yaml
2h ago update slo availability api
3h ago create check login-flow yaml
Use --json for machine-readable output in CI pipelines.
yorker test
Run HTTP monitors locally against their configured URLs. Uses the same config pipeline as deploy, so all defaults, auth, and secrets are applied identically.
yorker testRunning monitors locally...
HTTP Homepage ... 200 (142ms)
HTTP Users API ... 200 (89ms)
Browser Login Flow (4 steps)
1. Navigate
2. Log in
3. Dashboard loads
4. Check account
Browser monitors require remote execution: use `yorker deploy` then check results
MCP Docs Server
MCP monitors require remote execution: use `yorker deploy` then check results
Only HTTP monitors are exercised locally. Browser and MCP monitors are listed (browser monitors also display extracted step markers) but skipped; deploy them and view results remotely.
yorker completions [shell]
Generate shell completion scripts. Auto-detects your shell if the argument is omitted.
yorker completions # auto-detect
yorker completions bash
yorker completions zsh
yorker completions fishPipe the output to the appropriate file for your shell. For example:
yorker completions zsh > ~/.zfunc/_yorkerMonitor Commands
yorker monitors list
List all monitors. The output includes each monitor's name, type, frequency, location count, and any labels attached to the check.
yorker monitors list [--type <type>] [--status <status>]| Flag | Description |
|---|---|
--type <type> | Filter by type: http, browser, or mcp. |
--status <status> | Filter by status: enabled or paused. |
In --json mode, each monitor entry includes a labels array (omitted when label lookup failed, e.g. due to permissions or a transient API error).
yorker monitors get <name-or-id>
Show detailed information about a monitor, including recent results.
yorker monitors get "Homepage"
yorker monitors get chk_abc123Displays monitor details (ID, type, status, frequency, locations, URL or endpoint) and a table of recent results with response times and status codes.
yorker monitors create
Create a new HTTP monitor imperatively. Browser and MCP monitors must be created via yorker deploy from YAML.
yorker monitors create --name "API Health" --type http --url https://api.example.com/health [--method GET] [--frequency 5m] [--locations loc_us_east,loc_eu_central]| Flag | Required | Description |
|---|---|---|
--name <name> | Yes | Monitor name. |
--type <type> | Yes | Must be http. |
--url <url> | Yes | URL to monitor. |
--method <method> | No | HTTP method (default: GET). |
--frequency <freq> | No | Check frequency (default: 5m). |
--locations <ids> | No | Comma-separated location IDs (default: all active hosted locations). |
yorker monitors edit <name-or-id>
Edit an existing monitor.
yorker monitors edit "Homepage" --frequency 1m --add-location loc_eu_central| Flag | Description |
|---|---|
--name <name> | New monitor name. |
--frequency <freq> | New frequency. |
--add-location <id> | Add a location. |
--remove-location <id> | Remove a location. |
--yes | Skip confirmation prompt. |
yorker monitors delete <name-or-id>
Delete a monitor and all its results and alert rules.
yorker monitors delete "Old Endpoint" [--yes]Requires confirmation unless --yes is passed.
yorker monitors pause <name-or-id>
Pause a running monitor.
yorker monitors pause "Homepage"yorker monitors resume <name-or-id>
Resume a paused monitor.
yorker monitors resume "Homepage"yorker monitors analyze <name-or-id>
Run a deep insights analysis on a monitor. Sends recent results and context to the Yorker insights engine and returns a classified summary (type, severity, confidence, summary text).
yorker monitors analyze "Homepage"
yorker monitors analyze chk_abc123
yorker monitors analyze chk_abc123 --jsonOutput in human mode:
Type degradation
Severity warning
Confidence 0.87
Summary Response times increased 3x over the last hour across US-East,
correlated with an upstream dependency slowdown.
Model claude-sonnet-4-20250514
Generated Apr 9, 2026, 3:23:04 PM UTC
Deep analysis usage: 2/5 used for this resource.
In --json mode, emits the full validated response envelope (insight, stale, deepAnalysisCount, deepAnalysisLimit) under the standard { ok: true, data: ... } envelope.
Deep analysis is rate-limited per monitor (5-minute cooldown between runs, 5 lifetime calls per monitor) and per team (50 per month). When rate-limited, the command exits with code 3 and prints a message explaining how long to wait or when the monthly quota resets.
Results Commands
yorker results list <monitor>
List check results for a monitor.
yorker results list "Homepage" [--limit 20] [--status success] [--since 24h]| Flag | Description |
|---|---|
--limit <n> | Number of results (default: 20, max: 200). |
--offset <n> | Skip first N results for pagination. Cannot be combined with --status or --since. |
--status <status> | Filter: success, failure, error, timeout. Applied client-side. |
--since <duration> | Only show results from this period (e.g. 1h, 24h, 7d). Applied client-side. |
--offsetis server-side pagination;--statusand--sinceare client-side filters. Mixing them would produce inconsistent page sizes, so the CLI rejects the combination. Use--limit+ re-run with a later--sinceif you need to page through filtered results.
yorker results get <monitor> <result-id>
Show full details for a specific check result.
yorker results get "Homepage" res_abc123Includes timing breakdown (DNS, TLS, TTFB, content transfer), assertions (pass/fail), screenshots, Web Vitals (browser monitors), tool-call results (MCP monitors), network requests, and console errors.
yorker results tail <monitor>
Live-stream new results as they arrive. Long-running command that polls at a configurable interval.
yorker results tail "Homepage" [--interval 30s]| Flag | Description |
|---|---|
--interval <duration> | Poll interval (default: 30s, range: 5s to 1h). |
Tailing Homepage (every 30s, Ctrl+C to stop)
Apr 9, 2026, 12:34:56 PM UTC ✓ 200 US East Coast 142ms
Apr 9, 2026, 12:35:26 PM UTC ✓ 200 EU Central 89ms
Apr 9, 2026, 12:36:56 PM UTC ✗ timeout US East Coast 30000ms connection timeout
Timestamps are formatted as localized US English strings using the team's configured timezone (defaults to UTC). In --json mode, outputs one JSON object per result (newline-delimited).
Alert Commands
yorker alerts list
List alert instances.
yorker alerts list [--all] [--monitor "Homepage"] [--state active,acknowledged]| Flag | Description |
|---|---|
--all | Include resolved and recovered alerts (default: active and acknowledged only). |
--monitor <name-or-id> | Filter by monitor. |
--state <states> | Comma-separated states: active, acknowledged, recovered, resolved. |
The command returns at most 100 alert instances per invocation (the most recent by start time). For larger historical windows, use yorker alerts history or the REST API with pagination.
yorker alerts ack <instance-id>
Acknowledge an active alert.
yorker alerts ack ainst_abc123yorker alerts resolve <instance-id>
Manually resolve an alert.
yorker alerts resolve ainst_abc123yorker alerts analyze <instance-id>
Run a deep insights analysis on an alert instance. Sends context about the alert (monitor, recent results, correlations) to the Yorker insights engine and returns a classified summary with a type, severity, confidence score, and summary text.
yorker alerts analyze ainst_abc123
yorker alerts analyze ainst_abc123 --jsonOutput in human mode matches yorker monitors analyze: labeled fields for Type, Severity, Confidence, Summary, Model, and Generated, followed by a usage footer.
In --json mode, emits the full validated response envelope (insight, stale, deepAnalysisCount, deepAnalysisLimit) under the standard { ok: true, data: ... } envelope.
Deep analysis is rate-limited per alert instance (5-minute cooldown, 5 lifetime calls per instance) and per team (50 per month). When rate-limited, the command exits with code 3 and prints a message explaining how long to wait or when the monthly quota resets.
yorker alerts history
Show alert history.
yorker alerts history [--monitor "Homepage"] [--since 7d] [--limit 20]| Flag | Description |
|---|---|
--monitor <name-or-id> | Filter by monitor. |
--since <duration> | Time window (e.g. 30m, 24h, 7d). |
--limit <n> | Number of alerts (default: 20, max: 200). |
yorker alerts rules list
List alert rules across monitors.
yorker alerts rules list [--monitor "Homepage"]yorker alerts rules create
Create a new alert rule with a single condition. For multi-condition rules, use yorker.config.yaml and yorker deploy.
yorker alerts rules create --monitor "Homepage" --condition "consecutive_failures >= 3" --channel nch_abc123 [--name "homepage-down"] [--severity critical]| Flag | Required | Description |
|---|---|---|
--monitor <name-or-id> | Yes | Monitor to attach the rule to. |
--condition <condition> | Yes | Alert condition (see formats below). |
--channel <id> | Yes | Notification channel ID (nch_...). |
--name <name> | No | Optional rule name. |
--severity <level> | No | Severity for SSL/certificate conditions: critical, warning, or info. Ignored for non-certificate conditions. |
Condition formats
| Syntax | Type |
|---|---|
consecutive_failures >= 3 | Trigger after N consecutive failures. |
response_time > 5000 | Trigger if response time exceeds N ms. |
multi_location >= 2 | Trigger if N+ locations fail simultaneously. |
ssl_expiry < 14 | Trigger if SSL cert expires within N days. |
ssl_certificate_changed | Trigger when the leaf certificate fingerprint changes between runs. |
ssl_self_signed | Trigger when a self-signed or untrusted-root certificate is detected. |
ssl_protocol < TLSv1.3 | Trigger when the TLS handshake negotiates a protocol older than the minimum. Allowed minimums: TLSv1.2, TLSv1.3. |
Location Commands
The yorker locations command group manages private locations and runner keys.
yorker locations list
List your private locations. By default only private locations are shown; pass --all to include the 14 hosted locations as well.
yorker locations list # private locations only
yorker locations list --all # private + hosted| Flag | Description |
|---|---|
--all | Include hosted locations in the output. |
Shows each location's ID, type (hosted / private), display name, region, health status, and (for private locations) last heartbeat.
yorker locations create
Create a private location and auto-provision an initial runner key.
yorker locations create --name <slug> --display-name "<name>" [--region <id>]| Flag | Required | Description |
|---|---|---|
--name <slug> | Yes | Unique lowercase slug (e.g. staging-eu). |
--display-name <name> | Yes | Human-readable display name. |
--region <id> | No | Region identifier (default: private). |
The runner key secret is printed once; save it immediately. The command also prints a ready-to-run Docker snippet for starting the runner.
yorker locations delete <location-id>
Delete a private location. Fails if any monitors still reference it. Also revokes every runner key associated with the location. The argument is the location ID (loc_...).
yorker locations delete loc_staging_eu [--yes]yorker locations keys list <location-id>
List runner keys for a private location. Only the key ID, name, prefix, and last-used time are returned; the secret is never exposed again after creation.
yorker locations keys list loc_staging_euyorker locations keys create <location-id>
Provision a new runner key for a private location. The secret is printed once, followed by a ready-to-run Docker snippet.
yorker locations keys create loc_staging_eu [--name "<label>"]| Flag | Description |
|---|---|
--name <label> | Optional label for the key (useful when a location has multiple runners). |
yorker locations keys revoke <location-id> <key-id>
Revoke a runner key by its ID (rkey_...). Any runners using the revoked key lose access immediately.
yorker locations keys revoke loc_staging_eu rkey_abc123 [--yes]CI/CD Integration
Validate on push, preview changes on PRs, deploy on merge. See the full CI/CD Integration guide for complete GitHub Actions and GitLab CI workflows with PR commenting and JSON output parsing.
# GitHub Actions: quick start
- run: npm install -g @yorker/cli
- run: yorker validate # every push
- run: yorker diff # PR preview
- run: yorker deploy --force # merge to main (CI owns the config)
if: github.ref == 'refs/heads/main'Use --force in automated pipelines where the config file is the source of truth. Use --accept-remote if you want CI to skip resources that were edited manually.
Set YORKER_API_KEY and any YORKER_SECRET_* variables at the job or workflow level so all steps (including validate) can resolve {{secrets.*}} placeholders.
Command Tree
yorker
├── login [--force]
├── logout [--revoke]
├── init [--name] [--url] [--type] [--frequency] [--format file|directory] [--force]
├── deploy [--dry-run] [--prune] [--force] [--accept-remote] [--wait]
├── diff
├── pull [--output] [--format file|directory] [--monitor] [--force]
├── validate
├── status [--watch] [--interval]
├── test
├── dashboard [--interval] # interactive TUI
├── dashboards
│ └── install [--mode] [--hyperdx-api-key] [--clickstack-*] [--packs]
├── log [--type] [--name] [--source] [--limit] [--offset]
├── completions [bash|zsh|fish]
├── import --from <source> [--output] [path] # coming soon
├── monitors
│ ├── list [--type] [--status]
│ ├── get <name-or-id>
│ ├── create --name --type [--url] [--method] [--frequency] [--locations]
│ ├── edit <name-or-id> [--name] [--frequency] [--add-location] [--remove-location] [--yes]
│ ├── delete <name-or-id> [--yes]
│ ├── pause <name-or-id>
│ └── resume <name-or-id>
├── results
│ ├── list <monitor> [--limit] [--offset] [--status] [--since]
│ ├── get <monitor> <result-id>
│ └── tail <monitor> [--interval]
├── alerts
│ ├── list [--all] [--monitor] [--state]
│ ├── ack <instance-id>
│ ├── resolve <instance-id>
│ ├── history [--monitor] [--since] [--limit]
│ └── rules
│ ├── list [--monitor]
│ └── create --monitor --condition --channel [--name] [--severity]
└── locations
├── list [--all]
├── create --name --display-name [--region]
├── delete <location-id> [--yes]
└── keys
├── list <location-id>
├── create <location-id> [--name]
└── revoke <location-id> <key-id> [--yes]