incident-response

incident-response is a skill for Claude Code from uptimerobot/ai. It costs 25 tokens per session (1,785 once invoked), scanned A, original, MIT.

A workflow for investigating UptimeRobot alerts from discovery through recovery. It finds monitors marked down, retrieves incident information, can pause repeatedly failing monitors, and checks whether service has recovered.

In plain words
What is it for?
Use it to answer what is down, investigate an outage, temporarily silence repeated alerts, record findings when supported, and verify recovery.
Why use it?
It brings the main outage-triage tasks into one process instead of requiring separate lookups and status changes.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the uptimerobot plugin — 24 skills, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/uptimerobot/ai/incident-response
Any agent
npx skills add uptimerobot/ai --skill incident-response
Clone the repo
git clone --depth 1 https://github.com/uptimerobot/ai

Made for: Claude Code.

Or install uptimerobot, the plugin that ships this one along with the rest of its 24 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for incident-response

README.md
[![agentmods](https://agentmods.dev/badge/skills/uptimerobot/ai/incident-response.svg)](https://agentmods.dev/skills/uptimerobot/ai/incident-response)
Your own site
<a href="https://agentmods.dev/skills/uptimerobot/ai/incident-response"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/incident-response.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,785 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.01785
Opus 5 $0.00013 $0.00892
Sonnet 5 $0.00005 $0.00357
Haiku 4.5 $0.00003 $0.00178

Measured 6d ago against content hash 3ffb691cee5d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

incident-response scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/incident-response/SKILL.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Incident response

Preflight — read first. If you cannot see any uptimerobot:* MCP tools in your tool list, invoke the uptimerobot:setup skill before doing anything else. Do not tell the user the MCP is misconfigured — setup's Step 0 detects the common case (server connected, tools loaded after session start) and resolves it without re-keying.

The full loop a user runs when something's on fire:

  1. Find what's down (list-monitors with DOWN filter).
  2. Pull incident details for the worst offenders (get-incident-details).
  3. Optionally silence flapping monitors while the underlying issue is being fixed (update-monitor-statusPAUSED).
  4. Log findings as you go with incident comments (requires the incident-comments plan feature).
  5. After the fix, verify recovery with get-monitor-stats and/or get-response-times.

Use this when the user says "what's down?", "is production still broken?", "triage the alerts", or "show me the outage".

Step 1 — Find what's down

{ "filter": ["DOWN"], "limit": 50 }

Paginate until hasMore: false. Group the results by tag or friendly-name prefix before reporting — the user typically cares "what system is down", not "which individual checks are failing".

Also surface NOT_STARTED monitors on request — they're not actively monitored but show up in downtime reports.

Active-only view

To exclude paused and unstarted:

{ "filter": ["DOWN"], "limit": 50 }

(DOWN by itself excludes PAUSED / NOT_STARTED automatically.)

Step 2 — Pull recent incidents

For each down monitor that the user wants to dig into:

{ "monitorId": 800123456, "timeRange": "24h", "limit": 5 }

Returns a list of incidents (active and resolved). Note incidentId is a string.

Lead with the active (unresolved) incident, then show recently-resolved ones as flap history.

Step 3 — Diagnose one incident

{ "incidentId": "inc_abcdef1234567890" }

Returns:

  • Per-checker probe results (location, IP, HTTP status, error kind, response body snippet).
  • Traceroute hops where available.
  • Start time, duration, and root-cause category if assigned.

Read the full file on GitHub · 167 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 167 lines · 25 tokens per session scan A 3ffb691cee5d

Subscribe to this mod's changes

incident-response is a skill published in the GitHub repository uptimerobot/ai (24 stars, last pushed 23d ago), licensed MIT. It adds 25 tokens to every session and 1,785 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.