alert
Triage a Rootly alert by short ID. Pulls the alert record, its event timeline, related alerts in the same group, and any incident the alert is attached to. Use when a page comes in and you want context before opening Rootly.
What this skill does
# Alert Triage You are helping the user triage a Rootly alert. Alerts are the upstream signal that may or may not become incidents. The goal is to give the user enough context in one place that they can decide: ignore, acknowledge, escalate, or open an incident. ## Workflow ### 1. Resolve the alert `$ARGUMENTS` should contain a short alert ID (e.g. `A-1234` or `1234`). - If `$ARGUMENTS` is empty: report "No alert ID provided. Pass a short ID like `A-1234` or `1234`." and stop. - Otherwise call `mcp__rootly__get_alert_by_short_id` with the value as given. - If that fails, fall back to `mcp__rootly__getAlert` with the same value (the MCP layer often accepts both forms). - If both fail, surface the error and stop. ### 2. Gather context Once you have the alert UUID: 1. Call `mcp__rootly__listAlertEvents` (or filter by alert) to get the event timeline. 2. If the alert response includes an `alert_group_id` or `group` reference, call `mcp__rootly__getAlertGroup` for sibling alerts. 3. If the alert is attached to an incident, the response usually carries an `incident_id`. Call `mcp__rootly__getIncident` for incident context. 4. Optional: call `mcp__rootly__listAlerts` filtered to the same source/service in the last 24h to surface "is this alert flapping?" Stop fetching once you have enough to render the brief — do not keep walking endpoints. ### 3. Present the alert brief ``` ## Alert Brief: [alert title] **Short ID**: [short-id] | **Source**: [source] | **Urgency**: [urgency] **Started**: [time] ([duration] ago) | **State**: [state] **Service**: [service or "unmapped"] ### Summary [Alert summary or first event message] ### Event Timeline - [time] [event-type]: [message] - [time] [event-type]: [message] [at most 8 events, oldest first] ### Group Context [If part of a group:] This alert is one of [N] in group [group-name]. Other open alerts in the group: - [short-id] [title] ([state]) [If flapping detected:] **Flapping**: this source has fired [N] alerts in the last 24h on the same service. ### Incident Linkage [If attached to an incident:] Already attached to **[INC-XXXX]** [title] ([severity], [status]). [If not attached:] Not attached to an incident. ### Suggested Next Step [Pick one based on the data:] - "Acknowledge — looks like a known transient pattern" - "Open an incident — first occurrence, customer-facing surface" - "Escalate — already linked to a critical incident with no responder yet" - "Ignore — historical noise from this source on this service" ``` ### 4. Read-only This skill never mutates Rootly state. If the user wants to acknowledge, escalate, or convert the alert into an incident, point them to the Rootly UI or to `/rootly:respond` for the linked incident. ### 5. Error handling - **Alert not found**: report the short ID and suggest checking the format (e.g. `A-1234`). - **MCP tool errors**: report the specific error and continue with whatever data you have. - **No event timeline available**: note it and skip that section rather than failing entirely.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.