# Rootly

> Every Rootly incident, alert, and on-call object as a typed command, with a local SQLite mirror for offline analytics. Trigger phrases: `who is on call right now`, `find incidents similar to this one`, `what fixed this service last time`, `compute MTTR by service`, `find on-call coverage gaps`, `use rootly`, `run rootly`.

- Skill: `servosity/rootly` (Agent Skill, multi-file: 818 files)
- Install (CLI): `npx skillmds@latest add servosity/rootly`
- Raw SKILL.md: https://api.skillmd.com/api/skills/servosity/rootly/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- License: Apache-2.0
- Author: Servosity (https://skillmd.com/u/servosity)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/servosity/rootly

---


# Rootly  -  Printing Press CLI

## Prerequisites: Install the CLI

This skill drives the `rootly-cli` binary. **You must verify the CLI is installed before invoking any command from this skill.** If it is missing, install it first:

1. macOS / Linux:
   ```bash
   bash <(curl -fsSL https://raw.githubusercontent.com/Servosity/msp-skills/main/skills/rootly/install.sh)
   ```
2. Windows (PowerShell):
   ```powershell
   iwr -useb https://raw.githubusercontent.com/Servosity/msp-skills/main/skills/rootly/install.ps1 | iex
   ```
3. Verify: `rootly-cli --version`
4. Ensure `~/.local/bin` (macOS / Linux) or `%LOCALAPPDATA%\Programs\msp-skills` (Windows) is on `$PATH`.

The installer downloads the `rootly-cli` and `rootly-mcp` binaries into `~/.local/bin`
(macOS / Linux) or `%LOCALAPPDATA%\Programs\msp-skills` (Windows). It does not
register the skill with your agent and writes no MCP client config - see
[mcp-install.md](./mcp-install.md) for that wire-up.

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.

The official rootly-cli exposes a handful of resource groups; Rootly's API has ~98. This CLI types the entire surface, then adds what no Rootly tool has: a local SQLite mirror powering offline incident-similarity (related), solution-mining (fixed-last-time), MTTR/MTTA analytics (mttr), service scorecards (service-health), and cross-schedule coverage-gap detection (coverage-gaps)  -  the same agentic capabilities the AI-Labs MCP server reaches a remote service to compute, here for free in your terminal.

## When to Use This CLI

Reach for this CLI when you are operating Rootly from a terminal or an agent loop: declaring and updating incidents, checking who is on call across services, computing reliability analytics for a review, or gating a deploy on incident state. It is the right tool when you want offline, composable answers (pipe to jq, gate on exit codes) instead of clicking through the Rootly web UI, and especially when an MSP-style portfolio of many services makes per-service browsing impractical.

## Anti-triggers

Do not use this CLI for:
- Do not use this CLI to drive the Rootly web UI (Slack-channel creation, Zoom bridges, status-page theming)  -  those are UI/integration workflows the API does not expose as commands.
- Do not use the 17 analytics commands (related, mttr, oncall-now, ...) before a sync  -  they read the local SQLite mirror and return empty results on a cold store.
- Do not use 'digest' for an end-of-shift summary scoped to one schedule; use 'handoff' instead.
- Do not use 'escalation-trace' for the portfolio-wide who-is-on-call view; use 'oncall-now' instead.
- Do not use 'sla-breach' for historical mean-time trends; use 'mttr' instead.

## Unique Capabilities

These capabilities aren't available in any other tool for this API.

### Incident intelligence (offline)
- **`related`**  -  Find the past incidents most similar to a given one, ranked, so you can see how this class of problem played out before.

  _Reach for this during triage when a symptom feels familiar  -  it surfaces prior incidents and their resolutions without a remote ML round-trip._

  ```bash
  rootly-cli related INC-1234 --agent --limit 5
  ```
- **`war-room`**  -  One screen for an active incident: header, severity/status, full timeline, open action items, the on-call for the affected service, and the next escalation rung.

  _Use at the top of an incident to get full situational context in one command instead of five browser tabs._

  ```bash
  rootly-cli war-room INC-1234 --agent
  ```
- **`fixed-last-time`**  -  Mine the resolution notes and action items from a service's past incidents to surface what actually resolved this class of problem.

  _Pick this when an alert smells like a repeat  -  it answers 'what did we do last time' from history instead of guesswork._

  ```bash
  rootly-cli fixed-last-time <service-or-query> --agent --limit 10
  ```
- **`postmortem-skeleton`**  -  Emit a paste-ready post-mortem markdown skeleton for an incident: timeline, action items, severity, duration, and affected services.

  _Use at the start of a retrospective to skip the copy-paste assembly and go straight to analysis._

  ```bash
  rootly-cli postmortem-skeleton INC-1234
  ```
- **`action-items-overdue`**  -  List every open or overdue incident action item across all incidents, grouped by owner or team, with incident, severity, and age.

  _Reach for this in the weekly review to see which post-incident commitments are slipping and who owns them._

  ```bash
  rootly-cli action-items-overdue --group-by owner --agent
  ```
- **`digest`**  -  Time-windowed rollup of everything that moved since a timestamp: incidents opened/resolved, severity changes, new action items, alerts fired.

  _Reach for this after time away or before standup for a portfolio-wide what-moved rollup; use handoff for shift-scoped summaries._

  ```bash
  rootly-cli digest --since 24h --agent
  ```

### On-call operations
- **`coverage-gaps`**  -  Scan every on-call schedule for unstaffed windows over the next N days so you catch holiday and weekend gaps before a page is missed.

  _Run this on Monday (or in CI) to find on-call holes proactively rather than after someone misses an alert._

  ```bash
  rootly-cli coverage-gaps --days 14 --agent
  ```
- **`oncall-now`**  -  Show who is on call right now across every schedule and service in one table, escalation tier included.

  _Use when a page fires and you need to know who is responsible across all services without opening each schedule._

  ```bash
  rootly-cli oncall-now --agent
  ```
- **`handoff`**  -  End-of-shift summary: incidents opened, closed, and still open during the outgoing shift window, plus open action items and severity mix.

  _Run at shift change so the next on-call inherits an accurate picture instead of a retyped-from-memory note._

  ```bash
  rootly-cli handoff --schedule primary-oncall --agent
  ```
- **`oncall-load`**  -  Rank people by on-call hours and pages received across every schedule, so uneven rotations and burnout risk surface before someone quits.

  _Reach for this when asked who is overloaded, whether the rotation is fair, or who absorbed the most pages this month._

  ```bash
  rootly-cli oncall-load --days 30 --agent
  ```
- **`escalation-trace`**  -  Print the full ordered escalation ladder for a service or incident  -  every rung, the policy it comes from, who currently sits at each level, and the delay before the next page.

  _Reach for this during a page to answer 'who is next if nobody acks' without walking four API objects by hand._

  ```bash
  rootly-cli escalation-trace --service checkout-api --agent
  ```

### Reliability analytics
- **`mttr`**  -  Compute mean time to acknowledge and resolve from incident timestamps, grouped by service, team, or severity, with optional volume counts.

  _Use for the weekly reliability review or to quantify whether a service is trending worse over time._

  ```bash
  rootly-cli mttr --by service --since 30d --agent
  ```
- **`service-health`**  -  Per-service scorecard: incident count, MTTR, last incident, open action items, current on-call, and SLA status in one row.

  _Pull this before a deploy or during a portfolio review to judge a service's health at a glance._

  ```bash
  rootly-cli service-health <service> --agent
  ```
- **`sla-breach`**  -  List incidents that have breached or are about to breach their SLA target, sorted by time remaining, with a non-zero exit when any active breach exists.

  _Reach for this to gate dashboards or escalations on real SLA risk; exit code makes it pipeline-wireable._

  ```bash
  rootly-cli sla-breach --within 2h --agent
  ```

### CI / deploy plumbing
- **`deploy-guard`**  -  Pre-deploy gate for a service: checks for an open incident, confirms someone is on call, and flags recent flakiness, returning a non-zero exit code when it is unsafe to ship.

  _Wire into a deploy script so a risky push is blocked when the target service is mid-incident or has no on-call coverage._

  ```bash
  rootly-cli deploy-guard <service> --within 7d
  ```

### Config & signal hygiene
- **`config-diff`**  -  Diff the current synced Rootly config (services, escalation policies, workflows, severities, schedules) against the last saved snapshot to see what was added, removed, or changed  -  'config-diff --save' records the baseline.

  _Reach for this when auditing whether live Rootly config drifted from what config-as-code thinks it manages._

  ```bash
  rootly-cli config-diff --agent
  ```
- **`alert-noise`**  -  Rank alert sources and services by alert volume, repeat-fire rate, and how many alerts never became incidents  -  the signal-to-noise view that finds a flapping integration.

  _Reach for this when on-call is drowning: it names the noisiest source and the alerts that never become real incidents._

  ```bash
  rootly-cli alert-noise --days 14 --agent
  ```

## Command Reference

**action-items**  -  Manage action items

- `rootly-cli action-items delete-incident`  -  Delete a specific incident action item by id
- `rootly-cli action-items get-incident`  -  Retrieves a specific incident_action_item by id
- `rootly-cli action-items list-all-incident`  -  List all action items for an organization
- `rootly-cli action-items update-incident`  -  Update a specific incident action item by id

**alert-events**  -  Manage alert events

- `rootly-cli alert-events delete`  -  Deletes a specific alert event. Only alert events with kind 'note' (user-created notes) can be deleted.
- `rootly-cli alert-events get`  -  Retrieves a specific alert_event by id
- `rootly-cli alert-events update`  -  Updates a specific alert event. Only alert events with kind 'note' (user-created notes) can be updated.

**alert-fields**  -  Manage alert fields

- `rootly-cli alert-fields create`  -  Creates a new alert field from provided data
- `rootly-cli alert-fields delete`  -  Delete a specific alert field by id
- `rootly-cli alert-fields get`  -  Retrieves a specific alert field by id
- `rootly-cli alert-fields list`  -  List alert fields
- `rootly-cli alert-fields update`  -  Update a specific alert field by id

**alert-groups**  -  Manage alert groups

- `rootly-cli alert-groups create`  -  Creates a new alert group.
- `rootly-cli alert-groups delete`  -  Delete a specific alert group by id
- `rootly-cli alert-groups get`  -  Retrieves a specific alert group by id
- `rootly-cli alert-groups list`  -  List alert groups
- `rootly-cli alert-groups update`  -  Update a specific alert group by id.

**alert-routes**  -  Manage alert routes

- `rootly-cli alert-routes create`  -  Creates a new alert route from provided data. **Note: This endpoint requires access to Advanced Alert Routing.
- `rootly-cli alert-routes delete`  -  Delete a specific alert route by id. **Note: This endpoint requires access to Advanced Alert Routing.
- `rootly-cli alert-routes get`  -  Get a specific alert route by id. **Note: This endpoint requires access to Advanced Alert Routing.
- `rootly-cli alert-routes list`  -  List all alert routes for the current team with filtering and pagination.
- `rootly-cli alert-routes patch`  -  Updates an alert route. **Note: This endpoint requires access to Advanced Alert Routing.
- `rootly-cli alert-routes update`  -  Update a specific alert route by id. **Note: This endpoint requires access to Advanced Alert Routing.

**alert-routing-rules**  -  Manage alert routing rules

- `rootly-cli alert-routing-rules create`  -  Creates a new alert routing rule from provided data.
- `rootly-cli alert-routing-rules delete`  -  Delete a specific alert routing rule by id.
- `rootly-cli alert-routing-rules get`  -  Retrieves a specific alert routing rule by id.
- `rootly-cli alert-routing-rules list`  -  List alert routing rules.
- `rootly-cli alert-routing-rules update`  -  Update a specific alert routing rule by id.

**alert-sources**  -  Manage alert sources

- `rootly-cli alert-sources create-alerts-source`  -  Creates a new alert source from provided data
- `rootly-cli alert-sources delete-alerts-source`  -  Delete a specific alert source by id
- `rootly-cli alert-sources get-alerts-source`  -  Retrieves a specific alert source by id
- `rootly-cli alert-sources list-alerts-sources`  -  List alert sources
- `rootly-cli alert-sources update-alerts-source`  -  Update a specific alert source by id

**alert-urgencies**  -  Manage alert urgencies

- `rootly-cli alert-urgencies create-alert-urgency`  -  Creates a new alert urgency from provided data
- `rootly-cli alert-urgencies delete-alert-urgency`  -  Delete a specific alert urgency by id
- `rootly-cli alert-urgencies get-alert-urgency`  -  Retrieves a specific alert urgency by id
- `rootly-cli alert-urgencies list`  -  List alert urgencies
- `rootly-cli alert-urgencies update-alert-urgency`  -  Update a specific alert urgency by id

**alerts**  -  Manage alerts

- `rootly-cli alerts create`  -  Creates a new alert from provided data
- `rootly-cli alerts get`  -  Retrieves a specific alert by id
- `rootly-cli alerts list`  -  List alerts
- `rootly-cli alerts update`  -  Updates an alert

**api-keys**  -  Manage api keys

- `rootly-cli api-keys create`  -  Creates a new API key and returns it with the plaintext token.
- `rootly-cli api-keys delete`  -  Revoke an API key. The key is immediately invalidated and can no longer be used for authentication.
- `rootly-cli api-keys get`  -  Retrieves a specific API key by its UUID.
- `rootly-cli api-keys list`  -  List API keys for the current organization.
- `rootly-cli api-keys update`  -  Update an API key's mutable attributes: `name`, `description`, and `expires_at`.

**audits**  -  Manage audits

- `rootly-cli audits`  -  List audits

**authorizations**  -  Manage authorizations

- `rootly-cli authorizations create`  -  Creates a new authorization from provided data
- `rootly-cli authorizations delete`  -  Delete a specific authorization by id
- `rootly-cli authorizations get`  -  Retrieves a specific authorization by id
- `rootly-cli authorizations list`  -  List authorizations
- `rootly-cli authorizations update`  -  Update a specific authorization by id

**catalog-checklist-templates**  -  Manage catalog checklist templates

- `rootly-cli catalog-checklist-templates create`  -  Creates a new catalog checklist template
- `rootly-cli catalog-checklist-templates delete`  -  Delete a specific catalog checklist template by id
- `rootly-cli catalog-checklist-templates get`  -  Retrieves a specific catalog checklist template by id
- `rootly-cli catalog-checklist-templates list`  -  List catalog checklist templates
- `rootly-cli catalog-checklist-templates update`  -  Update a specific catalog checklist template by id

**catalog-entities**  -  Manage catalog entities

- `rootly-cli catalog-entities delete-catalog-entity`  -  Delete a specific Catalog Entity by id
- `rootly-cli catalog-entities get-catalog-entity`  -  Retrieves a specific Catalog Entity by id
- `rootly-cli catalog-entities update-catalog-entity`  -  Update a specific Catalog Entity by id

**catalog-entity-checklists**  -  Manage catalog entity checklists

- `rootly-cli catalog-entity-checklists get`  -  Retrieves a specific catalog entity checklist by id
- `rootly-cli catalog-entity-checklists list`  -  List catalog entity checklists

**catalog-entity-properties**  -  Manage catalog entity properties

- `rootly-cli catalog-entity-properties delete-catalog-entity-property`  -  **Deprecated:** This endpoint is deprecated
- `rootly-cli catalog-entity-properties get-catalog-entity-property`  -  **Deprecated:** This endpoint is deprecated
- `rootly-cli catalog-entity-properties update-catalog-entity-property`  -  **Deprecated:** This endpoint is deprecated

**catalog-properties**  -  Manage catalog properties

- `rootly-cli catalog-properties delete-catalog-property`  -  Delete a specific catalog_property by id - returns catalog_properties type
- `rootly-cli catalog-properties get-catalog-property`  -  Retrieves a specific Catalog Property by id - returns catalog_properties type
- `rootly-cli catalog-properties update-catalog-property`  -  Update a specific catalog_property by id - returns catalog_properties type

**catalogs**  -  Manage catalogs

- `rootly-cli catalogs create`  -  Creates a new catalog from provided data
- `rootly-cli catalogs delete`  -  Delete a specific catalog by id
- `rootly-cli catalogs get`  -  Retrieves a specific catalog by id
- `rootly-cli catalogs list`  -  List catalogs
- `rootly-cli catalogs update`  -  Update a specific catalog by id

**causes**  -  Manage causes

- `rootly-cli causes create`  -  Creates a new cause from provided data
- `rootly-cli causes create-catalog-property`  -  Creates a new Catalog Property from provided data
- `rootly-cli causes delete`  -  Delete a specific cause by id
- `rootly-cli causes get`  -  Retrieves a specific cause by id
- `rootly-cli causes list`  -  List causes
- `rootly-cli causes list-catalog-properties`  -  List Cause Catalog Properties
- `rootly-cli causes update`  -  Update a specific cause by id

**communications**  -  Manage communications

- `rootly-cli communications create-group`  -  Creates a new communications group from provided data
- `rootly-cli communications create-stage`  -  Creates a new communications stage from provided data
- `rootly-cli communications create-template`  -  Creates a new communications template from provided data
- `rootly-cli communications create-type`  -  Creates a new communications type from provided data
- `rootly-cli communications delete-group`  -  Deletes a communications group
- `rootly-cli communications delete-stage`  -  Deletes a communications stage
- `rootly-cli communications delete-template`  -  Deletes a communications template
- `rootly-cli communications delete-type`  -  Deletes a communications type
- `rootly-cli communications get-group`  -  Shows details of a communications group
- `rootly-cli communications get-stage`  -  Shows details of a communications stage
- `rootly-cli communications get-template`  -  Shows details of a communications template
- `rootly-cli communications get-type`  -  Shows details of a communications type
- `rootly-cli communications list-groups`  -  Lists communications groups
- `rootly-cli communications list-stages`  -  Lists communications stages
- `rootly-cli communications list-templates`  -  Lists communications templates
- `rootly-cli communications list-types`  -  Lists communications types
- `rootly-cli communications update-group`  -  Updates a communications group
- `rootly-cli communications update-stage`  -  Updates a communications stage
- `rootly-cli communications update-template`  -  Updates a communications template
- `rootly-cli communications update-type`  -  Updates a communications type

**custom-field-options**  -  Manage custom field options

- `rootly-cli custom-field-options delete`  -  [DEPRECATED] Use form field endpoints instead. Delete a specific Custom Field Option by id
- `rootly-cli custom-field-options get`  -  [DEPRECATED] Use form field endpoints instead. Retrieves a specific custom field option by id
- `rootly-cli custom-field-options update`  -  [DEPRECATED] Use form field endpoints instead. Update a specific custom field option by id

**custom-fields**  -  Manage custom fields

- `rootly-cli custom-fields create`  -  [DEPRECATED] Use form field endpoints instead. Creates a new custom field from provided data
- `rootly-cli custom-fields delete`  -  [DEPRECATED] Use form field endpoints instead. Delete a specific custom field by id
- `rootly-cli custom-fields get`  -  Retrieves a specific custom_field by id
- `rootly-cli custom-fields list`  -  [DEPRECATED] Use form field endpoints instead. List Custom fields
- `rootly-cli custom-fields update`  -  [DEPRECATED] Use form field endpoints instead. Update a specific custom field by id

**custom-forms**  -  Manage custom forms

- `rootly-cli custom-forms create`  -  Creates a new custom form from provided data
- `rootly-cli custom-forms delete`  -  Delete a specific custom form by id
- `rootly-cli custom-forms get`  -  Retrieves a specific custom form by id
- `rootly-cli custom-forms list`  -  List custom forms
- `rootly-cli custom-forms update`  -  Update a specific custom form by id

**dashboard-panels**  -  Manage dashboard panels

- `rootly-cli dashboard-panels delete`  -  Delete a specific dashboard panel by id
- `rootly-cli dashboard-panels get`  -  Retrieves a specific dashboard panel by id
- `rootly-cli dashboard-panels update`  -  Update a specific dashboard panel by id

**dashboards**  -  Manage dashboards

- `rootly-cli dashboards create`  -  Creates a new dashboard from provided data
- `rootly-cli dashboards delete`  -  Delete a specific dashboard by id
- `rootly-cli dashboards get`  -  Retrieves a specific dashboard by id
- `rootly-cli dashboards list`  -  List dashboards
- `rootly-cli dashboards update`  -  Update a specific dashboard by id

**edge-connectors**  -  Manage edge connectors

- `rootly-cli edge-connectors create`  -  Create edge connector
- `rootly-cli edge-connectors delete`  -  Delete edge connector
- `rootly-cli edge-connectors get`  -  Show edge connector
- `rootly-cli edge-connectors list`  -  List edge connectors
- `rootly-cli edge-connectors update`  -  Update edge connector

**email-addresses**  -  Manage email addresses

- `rootly-cli email-addresses delete-user-email-address`  -  Deletes a user email address
- `rootly-cli email-addresses show-user-email-address`  -  Retrieves a specific user email address
- `rootly-cli email-addresses update-user-email-address`  -  Updates a user email address

**environments**  -  Manage environments

- `rootly-cli environments create`  -  Creates a new environment from provided data
- `rootly-cli environments create-catalog-property`  -  Creates a new Catalog Property from provided data
- `rootly-cli environments delete`  -  Delete a specific environment by id
- `rootly-cli environments get`  -  Retrieves a specific environment by id
- `rootly-cli environments list`  -  List environments
- `rootly-cli environments list-catalog-properties`  -  List Environment Catalog Properties
- `rootly-cli environments update`  -  Update a specific environment by id

**escalation-levels**  -  Manage escalation levels

- `rootly-cli escalation-levels delete`  -  Delete a specific escalation level by id
- `rootly-cli escalation-levels get`  -  Retrieves a specific escalation level by id
- `rootly-cli escalation-levels update`  -  Update a specific escalation level by id

**escalation-paths**  -  Manage escalation paths

- `rootly-cli escalation-paths delete`  -  Delete a specific escalation path by id
- `rootly-cli escalation-paths get`  -  Retrieves a specific escalation path by id
- `rootly-cli escalation-paths update`  -  Update a specific escalation path by id

**escalation-policies**  -  Manage escalation policies

- `rootly-cli escalation-policies create-escalation-policy`  -  Creates a new escalation policy from provided data
- `rootly-cli escalation-policies delete-escalation-policy`  -  Delete a specific escalation policy by id
- `rootly-cli escalation-policies get-escalation-policy`  -  Retrieves a specific escalation policy by id
- `rootly-cli escalation-policies list`  -  List escalation policies
- `rootly-cli escalation-policies update-escalation-policy`  -  Update a specific escalation policy by id

**events**  -  Manage events

- `rootly-cli events delete-incident`  -  Delete a specific incident event by id
- `rootly-cli events get-incident`  -  Retrieves a specific incident_event by id
- `rootly-cli events update-incident`  -  Update a specific incident event by id

**feedbacks**  -  Manage feedbacks

- `rootly-cli feedbacks get-incident`  -  Retrieves a specific incident_feedback by id
- `rootly-cli feedbacks update-incident`  -  Update a specific incident feedback by id

**form-field-options**  -  Manage form field options

- `rootly-cli form-field-options delete`  -  Delete a specific form_field_option by id
- `rootly-cli form-field-options get`  -  Retrieves a specific form_field_option by id
- `rootly-cli form-field-options update`  -  Update a specific form_field_option by id

**form-field-placement-conditions**  -  Manage form field placement conditions

- `rootly-cli form-field-placement-conditions delete`  -  Delete a specific form_field_placement_condition by id
- `rootly-cli form-field-placement-conditions get`  -  Retrieves a specific form_field_placement_condition by id
- `rootly-cli form-field-placement-conditions update`  -  Update a specific form_field_placement_condition by id

**form-field-placements**  -  Manage form field placements

- `rootly-cli form-field-placements delete`  -  Delete a specific form_field_placement by id
- `rootly-cli form-field-placements get`  -  Retrieves a specific form_field_placement by id
- `rootly-cli form-field-placements update`  -  Update a specific form_field_placement by id

**form-field-positions**  -  Manage form field positions

- `rootly-cli form-field-positions delete`  -  Delete a specific form_field position by id
- `rootly-cli form-field-positions get`  -  Retrieves a specific form field_position by id
- `rootly-cli form-field-positions update`  -  Update a specific form_field position by id

**form-fields**  -  Manage form fields

- `rootly-cli form-fields create`  -  Creates a new form_field from provided data
- `rootly-cli form-fields delete`  -  Delete a specific form_field by id
- `rootly-cli form-fields get`  -  Retrieves a specific form_field by id
- `rootly-cli form-fields list`  -  List form_fields
- `rootly-cli form-fields update`  -  Update a specific form_field by id

**form-set-conditions**  -  Manage form set conditions

- `rootly-cli form-set-conditions delete`  -  Delete a specific form_set_condition by id
- `rootly-cli form-set-conditions get`  -  Retrieves a specific form_set_condition by id
- `rootly-cli form-set-conditions update`  -  Update a specific form_set_condition by id

**form-sets**  -  Manage form sets

- `rootly-cli form-sets create`  -  Creates a new form_set from provided data
- `rootly-cli form-sets delete`  -  Delete a specific form_set by id
- `rootly-cli form-sets get`  -  Retrieves a specific form_set by id
- `rootly-cli form-sets list`  -  List form_sets
- `rootly-cli form-sets update`  -  Update a specific form_set by id

**functionalities**  -  Manage functionalities

- `rootly-cli functionalities create-functionality`  -  Creates a new functionality from provided data
- `rootly-cli functionalities create-functionality-catalog-property`  -  Creates a new Catalog Property from provided data
- `rootly-cli functionalities delete-functionality`  -  Delete a specific functionality by id
- `rootly-cli functionalities get-functionality`  -  Retrieves a specific functionality by id
- `rootly-cli functionalities list`  -  List functionalities
- `rootly-cli functionalities list-functionality-catalog-properties`  -  List Functionality Catalog Properties
- `rootly-cli functionalities update-functionality`  -  Update a specific functionality by id

**heartbeats**  -  Manage heartbeats

- `rootly-cli heartbeats create`  -  Creates a new heartbeat from provided data
- `rootly-cli heartbeats delete`  -  Delete a specific heartbeat by id
- `rootly-cli heartbeats get`  -  Retrieves a specific heartbeat by id
- `rootly-cli heartbeats list`  -  List heartbeats
- `rootly-cli heartbeats update`  -  Update a specific heartbeat by id

**incident-custom-field-selections**  -  Manage incident custom field selections

- `rootly-cli incident-custom-field-selections delete`  -  [DEPRECATED] Use form field endpoints instead. Delete a specific incident custom field selection by id
- `rootly-cli incident-custom-field-selections get`  -  [DEPRECATED] Use form field endpoints instead. Retrieves a specific incident custom field selection by id
- `rootly-cli incident-custom-field-selections update`  -  [DEPRECATED] Use form field endpoints instead. Update a specific incident custom field selection by id

**incident-event-functionalities**  -  Manage incident event functionalities

- `rootly-cli incident-event-functionalities delete-incident-event-functionality`  -  Delete a specific incident event functionality by id
- `rootly-cli incident-event-functionalities get`  -  Retrieves a specific incident_event_functionality by id
- `rootly-cli incident-event-functionalities update-incident-event-functionality`  -  Update a specific incident event functionality by id

**incident-event-services**  -  Manage incident event services

- `rootly-cli incident-event-services delete`  -  Delete a specific incident event service by id
- `rootly-cli incident-event-services get`  -  Retrieves a specific incident_event_service by id
- `rootly-cli incident-event-services update`  -  Update a specific incident event service by id

**incident-form-field-selections**  -  Manage incident form field selections

- `rootly-cli incident-form-field-selections delete`  -  Delete a specific incident form field selection by id
- `rootly-cli incident-form-field-selections get`  -  Retrieves a specific incident form field selection by id
- `rootly-cli incident-form-field-selections update`  -  Update a specific incident form field selection by id

**incident-permission-set-booleans**  -  Manage incident permission set booleans

- `rootly-cli incident-permission-set-booleans delete`  -  Delete a specific incident_permission_set_boolean by id
- `rootly-cli incident-permission-set-booleans get`  -  Retrieves a specific incident_permission_set_boolean by id
- `rootly-cli incident-permission-set-booleans update`  -  Update a specific incident_permission_set_boolean by id

**incident-permission-set-resources**  -  Manage incident permission set resources

- `rootly-cli incident-permission-set-resources delete`  -  Delete a specific incident_permission_set_resource by id
- `rootly-cli incident-permission-set-resources get`  -  Retrieves a specific incident_permission_set_resource by id
- `rootly-cli incident-permission-set-resources update`  -  Update a specific incident_permission_set_resource by id

**incident-permission-sets**  -  Manage incident permission sets

- `rootly-cli incident-permission-sets create`  -  Creates a new incident_permission_set from provided data
- `rootly-cli incident-permission-sets delete`  -  Delete a specific incident_permission_set by id
- `rootly-cli incident-permission-sets get`  -  Retrieves a specific incident_permission_set by id
- `rootly-cli incident-permission-sets list`  -  List incident_permission_sets
- `rootly-cli incident-permission-sets update`  -  Update a specific incident_permission_set by id

**incident-retrospective-steps**  -  Manage incident retrospective steps

- `rootly-cli incident-retrospective-steps get`  -  Retrieves a specific incident retrospective step by id
- `rootly-cli incident-retrospective-steps update`  -  Update a specific incident retrospective step by id

**incident-role-tasks**  -  Manage incident role tasks

- `rootly-cli incident-role-tasks delete`  -  Delete a specific incident_role task by id
- `rootly-cli incident-role-tasks get`  -  Retrieves a specific incident_role_task by id
- `rootly-cli incident-role-tasks update`  -  Update a specific incident_role task by id

**incident-roles**  -  Manage incident roles

- `rootly-cli incident-roles create`  -  Creates a new incident role from provided data
- `rootly-cli incident-roles delete`  -  Delete a specific incident_role by id
- `rootly-cli incident-roles get`  -  Retrieves a specific incident_role by id
- `rootly-cli incident-roles list`  -  List incident roles
- `rootly-cli incident-roles update`  -  Update a specific incident_role by id

**incident-sub-statuses**  -  Manage incident sub statuses

- `rootly-cli incident-sub-statuses delete-incident-sub-status`  -  Delete a specific incident_sub_status by id
- `rootly-cli incident-sub-statuses get-incident-sub-status`  -  Retrieves a specific incident_sub_status by id
- `rootly-cli incident-sub-statuses update-incident-sub-status`  -  Update a specific incident_sub_status by id

**incident-types**  -  Manage incident types

- `rootly-cli incident-types create`  -  Creates a new incident_type from provided data
- `rootly-cli incident-types create-catalog-property`  -  Creates a new Catalog Property from provided data
- `rootly-cli incident-types delete`  -  Delete a specific incident_type by id
- `rootly-cli incident-types get`  -  Retrieves a specific incident_type by id
- `rootly-cli incident-types list`  -  List incident types
- `rootly-cli incident-types list-catalog-properties`  -  List IncidentType Catalog Properties
- `rootly-cli incident-types update`  -  Update a specific incident_type by id

**incidents**  -  Manage incidents

- `rootly-cli incidents create`  -  Creates a new incident from provided data
- `rootly-cli incidents delete`  -  Delete a specific incident by id
- `rootly-cli incidents get`  -  Retrieves a specific incident by id
- `rootly-cli incidents list`  -  List incidents
- `rootly-cli incidents update`  -  Update a specific incident by id

**ip-ranges**  -  Manage ip ranges

- `rootly-cli ip-ranges`  -  Retrieves the IP ranges for rootly.com services

**live-call-routers**  -  Manage live call routers

- `rootly-cli live-call-routers create`  -  Creates a new Live Call Router from provided data
- `rootly-cli live-call-routers delete`  -  Delete a specific Live Call Router by id
- `rootly-cli live-call-routers generate-phone-number`  -  Generates a phone number for Live Call Router
- `rootly-cli live-call-routers get`  -  Retrieves a specific Live Call Router by id
- `rootly-cli live-call-routers list`  -  List Live Call Routers
- `rootly-cli live-call-routers update`  -  Update a specific Live Call Router by id

**meeting-recordings**  -  Manage meeting recordings

- `rootly-cli meeting-recordings delete`  -  Delete a meeting recording. Only completed or failed recordings can be deleted.
- `rootly-cli meeting-recordings get`  -  Retrieve a single meeting recording session including its status, duration, speaker count, word count

**notification-rules**  -  Manage notification rules

- `rootly-cli notification-rules delete-user`  -  Delete a specific user notification rule by id
- `rootly-cli notification-rules get-user`  -  Retrieves a specific user notification rule by id
- `rootly-cli notification-rules update-user`  -  Update a specific user notification rule by id

**on-call-pay-reports**  -  Manage on call pay reports

- `rootly-cli on-call-pay-reports create`  -  Generates a new on-call pay report for the given date range. The report is generated asynchronously.
- `rootly-cli on-call-pay-reports get`  -  Retrieves a specific on-call pay report by id
- `rootly-cli on-call-pay-reports list`  -  List on-call pay reports
- `rootly-cli on-call-pay-reports update`  -  Update a specific on-call pay report by id. Triggers report regeneration.

**on-call-roles**  -  Manage on call roles

- `rootly-cli on-call-roles create`  -  Creates a new On-Call Role from provided data
- `rootly-cli on-call-roles delete`  -  Delete a specific On-Call Role by id
- `rootly-cli on-call-roles get`  -  Retrieves a specific On-Call Role by id
- `rootly-cli on-call-roles list`  -  List On-Call Roles
- `rootly-cli on-call-roles update`  -  Update a specific On-Call Role by id

**on-call-shadows**  -  Manage on call shadows

- `rootly-cli on-call-shadows delete`  -  Delete a specific on call shadow configuration by id. Future shadows are hard-deleted.
- `rootly-cli on-call-shadows get`  -  Retrieves a specific On Call Shadow configuration by ID
- `rootly-cli on-call-shadows update`  -  Update a specific on call shadow configuration by id

**oncalls**  -  Manage oncalls

- `rootly-cli oncalls`  -  List who is currently on-call, with support for filtering by escalation policy, schedule, and user.

**override-shifts**  -  Manage override shifts

- `rootly-cli override-shifts delete`  -  Delete a specific override shift by id
- `rootly-cli override-shifts get`  -  Retrieves a specific override shift by id
- `rootly-cli override-shifts update`  -  Update a specific override shift by id

**phone-numbers**  -  Manage phone numbers

- `rootly-cli phone-numbers delete-user`  -  Deletes a user phone number
- `rootly-cli phone-numbers show-user`  -  Retrieves a specific user phone number
- `rootly-cli phone-numbers update-user`  -  Updates a user phone number

**playbook-tasks**  -  Manage playbook tasks

- `rootly-cli playbook-tasks delete`  -  Delete a specific playbook task by id
- `rootly-cli playbook-tasks get`  -  Retrieves a specific playbook_task by id
- `rootly-cli playbook-tasks update`  -  Update a specific playbook task by id

**playbooks**  -  Manage playbooks

- `rootly-cli playbooks create`  -  Creates a new playbook from provided data
- `rootly-cli playbooks delete`  -  Delete a specific playbook by id
- `rootly-cli playbooks get`  -  Retrieves a specific playbook by id
- `rootly-cli playbooks list`  -  List playbooks
- `rootly-cli playbooks update`  -  Update a specific playbook by id

**post-mortem-templates**  -  Manage post mortem templates

- `rootly-cli post-mortem-templates create-postmortem-template`  -  Creates a new Retrospective Template from provided data
- `rootly-cli post-mortem-templates delete-postmortem-template`  -  Delete a specific Retrospective Template by id
- `rootly-cli post-mortem-templates get-postmortem-template`  -  Retrieves a specific Retrospective Template by id
- `rootly-cli post-mortem-templates list-postmortem-templates`  -  List Retrospective Templates
- `rootly-cli post-mortem-templates update-postmortem-template`  -  Update a specific Retrospective Template by id

**post-mortems**  -  Manage post mortems

- `rootly-cli post-mortems list-incident`  -  List incident retrospectives
- `rootly-cli post-mortems list-incident-postmortems`  -  Retrieves an incident retrospective
- `rootly-cli post-mortems update-incident`  -  Update a specific incident retrospective by id

**pulses**  -  Manage pulses

- `rootly-cli pulses create`  -  Creates a new pulse from provided data
- `rootly-cli pulses get`  -  Retrieves a specific pulse by id
- `rootly-cli pulses list`  -  List pulses
- `rootly-cli pulses update`  -  Update a specific pulse by id

**retrospective-configurations**  -  Manage retrospective configurations

- `rootly-cli retrospective-configurations get`  -  Retrieves a specific retrospective_configuration by id
- `rootly-cli retrospective-configurations list`  -  List retrospective configurations
- `rootly-cli retrospective-configurations update`  -  Update a specific retrospective configuration by id

**retrospective-process-group-steps**  -  Manage retrospective process group steps

- `rootly-cli retrospective-process-group-steps delete`  -  Delete a specific RetrospectiveProcessGroup Step by id
- `rootly-cli retrospective-process-group-steps get`  -  Retrieves a specific RetrospectiveProcessGroup Step by id
- `rootly-cli retrospective-process-group-steps update`  -  Update a specific RetrospectiveProcessGroup Step by id

**retrospective-process-groups**  -  Manage retrospective process groups

- `rootly-cli retrospective-process-groups delete`  -  Delete a specific Retrospective Process Group by id
- `rootly-cli retrospective-process-groups get`  -  Retrieves a specific Retrospective Process Group by id
- `rootly-cli retrospective-process-groups update`  -  Update a specific Retrospective Process Group by id

**retrospective-processes**  -  Manage retrospective processes

- `rootly-cli retrospective-processes create-retrospective-process`  -  Creates a new retrospective process from provided data
- `rootly-cli retr

…(truncated)
