Best for
- Reach for this CLI when you need to query, slice, or diff a runZero attack surface repeatedly without spending the license-bound daily API quota, when you need to join assets to services/software/vulnerabilities offline…
Servosity/msp-skills/skills/runzero/SKILL.md
Every runZero query, plus a local SQLite copy of your whole attack surface that diffs over time, joins assets to vulnerabilities offline, and costs zero API quota to re-slice. Trigger phrases: `list runzero assets`, `triage my runzero exposure`, `what changed on my attack surface`, `which assets are affected by this CVE`, `find stale assets in runzero`, `use runzero`, `run runzero-cli`.
Decision brief
Every runZero query, plus a local SQLite copy of your whole attack surface that diffs over time, joins assets to vulnerabilities offline, and costs zero API quota to re-slice. Trigger phrases: `list runzero assets`, `triage my runzero exposure`, `what changed on my attack surface`, `which assets are affected by this CVE`, `find stale assets in runzero`, `us…
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/Servosity/msp-skills --skill "skills/runzero"Inspect the Agent Skill "runzero" from https://github.com/Servosity/msp-skills/blob/30e109db0872897de0b88adb38d81d4c292da3ae/skills/runzero/SKILL.md at commit 30e109db0872897de0b88adb38d81d4c292da3ae. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
runZero uses an HTTP Bearer API token. The token prefix encodes its scope: an Account key (starts with CT) reaches everything, an Organization key (starts with OT) reaches the org and export endpoints, and an Export token (starts with ET) reaches export endpoints only. Set your…
This skill drives the runzero-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
Reach for this CLI when you need to query, slice, or diff a runZero attack surface repeatedly without spending the license-bound daily API quota, when you need to join assets to services/software/vulnerabilities offline (which the live API cannot do in one call), or when you are…
These capabilities aren't available in any other tool for this API.
Reach for this to answer 'what changed on my attack surface' without re-querying the live API or paying any daily quota.
Permission review
The documentation asks the agent to run terminal commands or scripts.
npx -y @mvanhorn/printing-press-library install runzero --cli-onlyThe documentation asks the agent to run terminal commands or scripts.
go install github.com/mvanhorn/printing-press-library/library/monitoring/runzero/cmd/runzero-cli@latestThe documentation includes network, browsing, or remote request actions.
runZero's console and SDK answer one query at a time, online-only, against a license-bound daily quota. This CLI syncs your assets, services, software, certificates, and vulnerability findings into local SQLite once, then turns 'what changeThe documentation asks the agent to read local files, directories, or repositories.
`runzero-cli org import-nessus-scan-data` - Import a Nessus scan data file into a siteThe documentation asks the agent to read local files, directories, or repositories.
`runzero-cli org import-scan-data` - Import a scan data file into a siteThe documentation includes sending, uploading, or posting data to a remote service.
| `webhook:<url>` | POST the output body to the URL (`application/json` or `application/x-ndjson` when `--compact`) |The documentation includes network, browsing, or remote request actions.
| `webhook:<url>` | POST the output body to the URL (`application/json` or `application/x-ndjson` when `--compact`) |Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 83/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 15 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
This skill drives the runzero-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
$HOME/.local/bin on macOS/Linux and %LOCALAPPDATA%\Programs\PrintingPress\bin on Windows:
npx -y @mvanhorn/printing-press-library install runzero --cli-only
runzero-cli --version$PATH for the agent/runtime that will invoke this skill.If the npx install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.4 or newer). This installs into $GOPATH/bin (default $HOME/go/bin), so add that directory to $PATH instead:
go install github.com/mvanhorn/printing-press-library/library/monitoring/runzero/cmd/runzero-cli@latest
If --version reports "command not found" after install, the runtime cannot see the binary directory on $PATH. Do not proceed with skill commands until verification succeeds.
runZero's console and SDK answer one query at a time, online-only, against a license-bound daily quota. This CLI syncs your assets, services, software, certificates, and vulnerability findings into local SQLite once, then turns 'what changed on my attack surface' (diff), 'what critical thing is exposed and vulnerable' (triage), and 'who is affected by this CVE' (affected) into a single quota-free local command - with --json, --select, --agent output, and typed exit codes for clean scripting.
Reach for this CLI when you need to query, slice, or diff a runZero attack surface repeatedly without spending the license-bound daily API quota, when you need to join assets to services/software/vulnerabilities offline (which the live API cannot do in one call), or when you are scripting inventory pulls, exposure triage, scan orchestration, or fleet hygiene into your own tooling. It is the right choice for MSP/MSSP weekly exposure sweeps, incident-response CVE pivots, and asset-inventory cleanup.
These capabilities aren't available in any other tool for this API.
diff - Show which assets, services, ports, and software appeared or disappeared between two local syncs.
Reach for this to answer 'what changed on my attack surface' without re-querying the live API or paying any daily quota.
runzero-cli diff --since 7d --agent
triage - Rank assets by criticality joined to their exposed services and high-severity vulnerability findings.
Pick this when you need the single ranked list of 'what critical thing is exposed and vulnerable' instead of three separate API queries reconciled by hand.
runzero-cli triage --internet-facing --agent
affected - Given a CVE, list every affected asset with its services and criticality.
During an incident, use this to get the blast radius of an advisory in one command.
runzero-cli affected CVE-2024-3094 --agent
exposure-map - Roll up which protocols and ports are exposed across a CIDR, asset-counted per service.
Use this to see which subnets concentrate risky exposed services before planning a scan or segmentation change.
runzero-cli exposure-map 10.0.0.0/8 --agent
exposure-delta - List services and ports that became newly exposed or newly vulnerable since the last sync, ranked by asset criticality.
Run this after each sync for the Monday-morning answer to 'what NEW thing is exposed', without burning daily API quota.
runzero-cli exposure-delta --agent
certs-expiring - List TLS certificates expiring within a window or using weak crypto, joined to the asset and service presenting them.
Use this in the weekly exposure sweep to catch expiring or weak certs with the asset context needed to act.
runzero-cli certs-expiring --days 30 --agent
software rollup - Group installed software by product and version with a count of assets running each.
Use this to find how many distinct versions of a package are deployed and which assets run the laggards.
runzero-cli software rollup <name> --agent # e.g. <name> = openssl
stale - Bucket assets by last-seen age, end-of-life OS, and missing tag/owner - emitting IDs ready to pipe into the bulk commands.
Run this for a weekly hygiene pass, then act on the asset_ids with the org bulk-asset commands (e.g. org remove-bulk-assets to retire them).
runzero-cli stale --days 30 --agent
scan-watch - Start a scan on a site and follow the task to completion in one command, with a typed exit code on the result.
Use this to script 'scan and wait' into a pipeline instead of babysitting the console task page or re-pasting a polling loop.
runzero-cli scan-watch 550e8400-e29b-41d4-a716-446655440000 --targets 10.0.0.0/24 --json
account - Requires Account key (starts with CT), or OAuth
runzero-cli account create-asset-ownership-types - Create new asset ownership typesrunzero-cli account create-credential - Create a new credentialrunzero-cli account create-custom-integration - Create a new custom integrationrunzero-cli account create-custom-integration-and-id - Replace custom integration at provided IDrunzero-cli account create-group - Create a new grouprunzero-cli account create-group-mapping - Create a new SSO group mappingrunzero-cli account create-key - Create a new keyrunzero-cli account create-organization - Create a new organizationrunzero-cli account create-organization-export-token - Create a new export token for an organizationrunzero-cli account create-scan-template - Create a new scan templaterunzero-cli account create-user - Create a new user accountrunzero-cli account create-user-invite - Create a new user account and send an email inviterunzero-cli account delete-asset-ownership-type - Delete a single asset ownership typerunzero-cli account delete-asset-ownership-types - Delete asset ownership typesrunzero-cli account delete-custom-integration - Delete an custom integrationrunzero-cli account delete-organization-export-token - Removes the export token from the specified organizationrunzero-cli account delete-organization-export-token-deprecated - This API has been deprecated. Please use DELETE /account/orgs/{org_id}/exportTokens/{key_id} instead.runzero-cli account export-events-json - System event log as JSONrunzero-cli account export-events-jsonl - System event log as JSON line-delimitedrunzero-cli account get-agents - Get all agents across all organizationsrunzero-cli account get-apitoken - Generate an access token using an API clientrunzero-cli account get-asset-ownership-types - Get all asset ownership typesrunzero-cli account get-credential - Get credential detailsrunzero-cli account get-credentials - Get all account credentialsrunzero-cli account get-custom-integration - Get single custom integrationrunzero-cli account get-custom-integrations - Get all custom integrationsrunzero-cli account get-group - Get group detailsrunzero-cli account get-group-mapping - Get SSO group mapping detailsrunzero-cli account get-group-mappings - Get all SSO group mappingsrunzero-cli account get-groups - Get all groupsrunzero-cli account get-key - Get key detailsrunzero-cli account get-keys - Get all active API keysrunzero-cli account get-license - Get license detailsrunzero-cli account get-organization - Get organization detailsrunzero-cli account get-organization-export-token - Get export token detailsrunzero-cli account get-organization-export-tokens - Get all active export tokens for an organizationrunzero-cli account get-organizations - Get all organization detailsrunzero-cli account get-scan-template - Get scan template detailsrunzero-cli account get-scan-templates - Get all scan templates across all organizations (up to 1000)runzero-cli account get-sites - Get all sites details across all organizationsrunzero-cli account get-tasks - Get all task details across all organizations (up to 1000)runzero-cli account get-user - Get user detailsrunzero-cli account get-users - Get all usersrunzero-cli account remove-credential - Remove this credentialrunzero-cli account remove-group - Remove this grouprunzero-cli account remove-group-mapping - Remove this SSO group mappingrunzero-cli account remove-key - Remove this keyrunzero-cli account remove-organization - Remove this organizationrunzero-cli account remove-scan-template - Remove scan templaterunzero-cli account remove-user - Remove this userrunzero-cli account reset-user-lockout - Resets the user's lockout statusrunzero-cli account reset-user-mfa - Resets the user's MFA tokensrunzero-cli account reset-user-password - Sends the user a password reset emailrunzero-cli account rotate-apitoken - Rotate the API client secretrunzero-cli account rotate-key - Rotates the key secretrunzero-cli account rotate-organization-export-token - Rotates an organization export token and returns the updated tokenrunzero-cli account rotate-organization-export-token-deprecated - This API has been deprecated. Please use PATCH /account/orgs/{org_id}/exportTokens/{key_id}/rotate instead.runzero-cli account update-asset-ownership-type - Update a single asset ownership typerunzero-cli account update-asset-ownership-types - Update asset ownership typesrunzero-cli account update-custom-integration - Update a single custom integrationrunzero-cli account update-group - Update an existing grouprunzero-cli account update-group-mapping - Update an existing SSO group mappingrunzero-cli account update-organization - Update organization detailsrunzero-cli account update-scan-template - Update scan templaterunzero-cli account update-user - Update a user's detailshealth - Manage health
runzero-cli health - Returns a health check status (cloud and self-hosted)org - Manage org
runzero-cli org bulk-remove-custom-integration - Remove custom integration from a list of assetsrunzero-cli org clear-bulk-asset-owners - Clear all owners across multiple assets based on a search queryrunzero-cli org clear-bulk-asset-tags - Clear all tags across multiple assets based on a search queryrunzero-cli org create-sample - Create a traffic sampling task for a given siterunzero-cli org create-scan - Create a scan task for a given siterunzero-cli org create-site - Create a new siterunzero-cli org export-asset-metrics-json - Export asset metricsrunzero-cli org export-asset-top-hwcsv - Top asset hardware products as CSVrunzero-cli org export-asset-top-oscsv - Top asset operating systems as CSVrunzero-cli org export-asset-top-tags-csv - Top asset tags as CSVrunzero-cli org export-asset-top-types-csv - Top asset types as CSVrunzero-cli org export-services-top-products-csv - Top service products as CSVrunzero-cli org export-services-top-protocols-csv - Top service protocols as CSVrunzero-cli org export-services-top-tcpcsv - Top TCP services as CSVrunzero-cli org export-services-top-udpcsv - Top UDP services as CSVrunzero-cli org get-agent - Get details for a single agent. Legacy path for /org/explorers/{explorer_id}runzero-cli org get-agents - Get all agents. Legacy path for /org/explorersrunzero-cli org get-asset - Get asset detailsrunzero-cli org get-assets - Get all assetsrunzero-cli org get-custom-integration - Get single custom integrationrunzero-cli org get-custom-integrations - Get all custom integrationsrunzero-cli org get-explorer - Get details for a single explorer. This is the same call as legacy path /org/agents/{agent_id}runzero-cli org get-explorers - Get all explorers. This is the same call as legacy path /org/agentsrunzero-cli org get-hosted-zone - Get details for a single Hosted Zone. Hosted Zones are only available to Enterprise licensed customers.runzero-cli org get-hosted-zones - Get all hosted zones. Hosted Zones are only available to Enterprise licensed customers.runzero-cli org get-key - Get API key detailsrunzero-cli org get-organization - Get organization detailsrunzero-cli org get-service - Get service detailsrunzero-cli org get-services - Get all servicesrunzero-cli org get-site - Get site detailsrunzero-cli org get-sites - Get all sitesrunzero-cli org get-task - Get task detailsrunzero-cli org get-task-change-report - Returns a temporary task change report data urlrunzero-cli org get-task-log - Returns a temporary task log data urlrunzero-cli org get-task-scan-data - Returns a temporary task scan data urlrunzero-cli org get-tasks - Get all tasks (last 1000)runzero-cli org get-wireless-lan - Get wireless LAN detailsrunzero-cli org get-wireless-lans - Get all wireless LANsrunzero-cli org hide-task - Signal that a completed task should be hiddenrunzero-cli org import-nessus-scan-data - Import a Nessus scan data file into a siterunzero-cli org import-packet-data - Import a packet capture file into a siterunzero-cli org import-scan-data - Import a scan data file into a siterunzero-cli org merge-assets - Merge multiple assetsrunzero-cli org remove-agent - Remove and uninstall an agent. Legacy path for /org/explorers/{explorer_id}runzero-cli org remove-asset - Remove an assetrunzero-cli org remove-asset-source - Remove single source from assetrunzero-cli org remove-bulk-assets - Removes multiple assets by IDrunzero-cli org remove-custom-integration - Remove single custom integration from assetrunzero-cli org remove-explorer - Remove and uninstall an explorer. This is the same call as legacy path /org/agents/{agent_id}runzero-cli org remove-key - Remove the current API keyrunzero-cli org remove-service - Remove a servicerunzero-cli org remove-site - Remove a site and associated assetsrunzero-cli org remove-wireless-lan - Remove a wireless LANrunzero-cli org rotate-key - Rotate the API key secret and return the updated keyrunzero-cli org stop-task - Signal that a task should be stopped or canceled.This will also remove recurring and scheduled tasksrunzero-cli org update-agent-settings - Update the settings associated with the agent. Legacy path for /org/explorers/{explorer_id}runzero-cli org update-asset-comments - Update asset commentsrunzero-cli org update-asset-criticality - Update asset criticalityrunzero-cli org update-asset-owners - Update asset ownersrunzero-cli org update-asset-tags - Update asset tagsrunzero-cli org update-bulk-asset-criticality - Update criticality across multiple assets based on a search queryrunzero-cli org update-bulk-asset-owners - Update asset owners across multiple assets based on a search queryrunzero-cli org update-bulk-asset-tags - Update tags across multiple assets based on a search queryrunzero-cli org update-explorer-settings - Update the settings associated with the Explorer. This is the same call as legacy path /org/agents/{agent_id}runzero-cli org update-organization - Update organization detailsrunzero-cli org update-site - Update a site definitionrunzero-cli org update-task - Update task parametersrunzero-cli org upgrade-agent - Force an agent to update and restart. Legacy path for /org/explorers/{explorer_id}/updaterunzero-cli org upgrade-explorer - Force an explorer to update and restart. This is the same call as legacy path /org/agents/{agent_id}/updatereleases - Manage releases
runzero-cli releases get-latest-agent-version - Returns latest agent versionrunzero-cli releases get-latest-platform-version - Returns latest platform versionrunzero-cli releases get-latest-scanner-version - Returns latest scanner versionrunzero-export - Manage runzero export
runzero-cli runzero-export assets-cisco-csv - Cisco serial number and model name export for Cisco Smart Net Total Care Service.runzero-cli runzero-export assets-csv - Asset inventory as CSVrunzero-cli runzero-export assets-json - Exports the asset inventoryrunzero-cli runzero-export assets-jsonl - Asset inventory as JSON line-delimitedrunzero-cli runzero-export assets-nmap-xml - Asset inventory as Nmap-style XMLrunzero-cli runzero-export certificates-csv - Export the certificate inventory as CSVrunzero-cli runzero-export certificates-json - Export the certificate inventory as JSONrunzero-cli runzero-export certificates-jsonl - Export the certificate inventory as JSONL line-delimitedrunzero-cli runzero-export directory-groups-csv - Group inventory as CSVrunzero-cli runzero-export directory-groups-json - Exports the group inventoryrunzero-cli runzero-export directory-groups-jsonl - Group inventory as JSON line-delimitedrunzero-cli runzero-export directory-users-csv - User inventory as CSVrunzero-cli runzero-export directory-users-json - Exports the user inventoryrunzero-cli runzero-export directory-users-jsonl - User inventory as JSON line-delimitedrunzero-cli runzero-export findings-csv - Export findings as CSVrunzero-cli runzero-export findings-json - Export findings as JSONrunzero-cli runzero-export findings-jsonl - Export findings as JSON line-delimitedrunzero-cli runzero-export services-csv - Service inventory as CSVrunzero-cli runzero-export services-json - Service inventory as JSONrunzero-cli runzero-export services-jsonl - Service inventory as JSON line-delimitedrunzero-cli runzero-export sites-csv - Site list as CSVrunzero-cli runzero-export sites-json - Export all sitesrunzero-cli runzero-export sites-jsonl - Site list as JSON line-delimitedrunzero-cli runzero-export snmparpcache-csv - SNMP ARP cache data as CSVrunzero-cli runzero-export snow-assets-csv - Export an asset inventory as CSV for ServiceNow integrationrunzero-cli runzero-export snow-assets-json - Exports the asset inventory as JSONrunzero-cli runzero-export snow-service-graph-assets-json - Exports the asset inventory as JSONrunzero-cli runzero-export snow-services-csv - Export a service inventory as CSV for ServiceNow integrationrunzero-cli runzero-export software-csv - Software inventory as CSVrunzero-cli runzero-export software-json - Exports the software inventoryrunzero-cli runzero-export software-jsonl - Software inventory as JSON line-delimitedrunzero-cli runzero-export splunk-asset-sync-created-json - Exports the asset inventory in a sync-friendly manner using created_at as a checkpoint. Requires the Splunk entitlement.runzero-cli runzero-export splunk-asset-sync-updated-json - Exports the asset inventory in a sync-friendly manner using updated_at as a checkpoint. Requires the Splunk entitlement.runzero-cli runzero-export subnet-utilization-stats-csv - Subnet utilization statistics as as CSVrunzero-cli runzero-export tasks-json - Exports organization tasksrunzero-cli runzero-export tasks-jsonl - Organization tasks as JSON line-delimitedrunzero-cli runzero-export vulnerabilities-csv - Export the vulnerability inventory as CSVrunzero-cli runzero-export vulnerabilities-json - Export the vulnerability inventory as JSONrunzero-cli runzero-export vulnerabilities-jsonl - Export the vulnerability inventory as JSON line-delimitedrunzero-cli runzero-export wireless-csv - Wireless inventory as CSVrunzero-cli runzero-export wireless-json - Wireless inventory as JSONrunzero-cli runzero-export wireless-jsonl - Wireless inventory as JSON line-delimitedrunzero-import - Manage runzero import
runzero-cli runzero-import <orgID> - Assets can be discovered, imported, and merged by runZero scan tasks, first-party integrationsWhen you know what you want to do but not which command does it, ask the CLI directly:
runzero-cli which "<capability in your own words>"
which resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code 0 means at least one match; exit code 2 means no confident match - fall back to --help or use a narrower query.
runzero-cli inventory sync && runzero-cli triage --internet-facing --agent
Pull the inventory once, then rank internet-facing assets by criticality and vulnerability exposure entirely from the local store.
runzero-cli org get-assets --search 'alive:t protocols:smb2' --agent --select id,addresses,os,services.protocol,services.port
Live asset records nest services and addresses; --select with dotted paths returns only the fields an agent needs so it does not burn context on the full payload.
runzero-cli affected CVE-2024-3094 --agent
Pivot from a single advisory to every affected asset, its services, and its criticality in one local join.
runzero-cli stale --days 45 --json --select asset_id,name,reasons
Find assets not seen in 45 days (plus EOL-OS and untagged/unowned) locally; feed the asset_ids into org update-bulk-asset-tags or org remove-bulk-assets to clean up.
runzero-cli software rollup <name> --agent # e.g. <name> = openssl
Group every installed build of a product (here, OpenSSL) by version with the count of assets running each, so you can target the outdated ones. Omit <name> to roll up the entire software inventory.
runZero uses an HTTP Bearer API token. The token prefix encodes its scope: an Account key (starts with CT) reaches everything, an Organization key (starts with OT) reaches the org and export endpoints, and an Export token (starts with ET) reaches export endpoints only. Set your token in the environment and run doctor to confirm it is accepted before syncing (doctor checks connectivity, not scope - the prefix letters above are the scope signal).
Run runzero-cli doctor to verify setup.
Add --agent to any command. Expands to: --json --compact --no-input --no-color --yes.
Pipeable - JSON on stdout, errors on stderr
Filterable - --select keeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:
runzero-cli account create-asset-ownership-types --agent --select id,name,status
Previewable - --dry-run shows the request without sending
Offline-friendly - sync/search commands can use the local SQLite store when available
Non-interactive - never prompts, every input is a flag
Explicit retries - use --idempotent only when an already-existing create should count as success, and --ignore-missing only when a missing delete target should count as success
Commands that read from the local store or the API wrap output in a provenance envelope:
{
"meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
"results": <data>
}
Parse .results for data and .meta.source to know whether it's live or local. A human-readable N results (live) summary is printed to stderr only when stdout is a terminal AND no machine-format flag (--json, --csv, --compact, --quiet, --plain, --select) is set - piped/agent consumers and explicit-format runs get pure JSON on stdout.
When you (or the agent) notice something off about this CLI, record it:
runzero-cli feedback "the --since flag is inclusive but docs say exclusive"
runzero-cli feedback --stdin < notes.txt
runzero-cli feedback list --json --limit 10
Entries are stored locally at ~/.local/share/runzero-cli/feedback.jsonl. They are never POSTed unless RUNZERO_FEEDBACK_ENDPOINT is set AND either --send is passed or RUNZERO_FEEDBACK_AUTO_SEND=true. Default behavior is local-only.
Write what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
Every command accepts --deliver <sink>. The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
| Sink | Effect |
|---|---|
stdout | Default; write to stdout only |
file:<path> | Atomically write output to <path> (tmp + rename) |
webhook:<url> | POST the output body to the URL (application/json or application/x-ndjson when --compact) |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.
runzero-cli profile save briefing --json
runzero-cli --profile briefing account create-asset-ownership-types
runzero-cli profile list --json
runzero-cli profile show briefing
runzero-cli profile delete briefing --yes
Explicit flags always win over profile values; profile values win over defaults. agent-context lists all available profiles under available_profiles so introspecting agents discover them at runtime.
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 4 | Authentication required |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
Parse $ARGUMENTS:
help, or --help → show runzero-cli --help outputinstall → ends with mcp → MCP installation; otherwise → see Prerequisites above--agent)go install github.com/mvanhorn/printing-press-library/library/monitoring/runzero/cmd/runzero-mcp@latest
claude mcp add runzero-mcp -- runzero-mcp
claude mcp listwhich runzero-cli
If not found, offer to install (see Prerequisites at the top of this skill).--agent flag:
runzero-cli <command> [subcommand] [args] --agent
runzero-cli <command> --help.Alternatives
event4u-app/agent-config
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.
K-Dense-AI/scientific-agent-skills
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.
K-Dense-AI/scientific-agent-skills
Medicinal chemistry filters for compound triage. Apply drug-likeness rules (Lipinski, Veber, CNS), structural alert catalogs (PAINS, NIBR, ChEMBL), complexity metrics, and the medchem query language for library filtering.
K-Dense-AI/scientific-agent-skills
Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.