sla-report

sla-report is a skill for Claude Code from uptimerobot/ai. It costs 44 tokens per session (1,755 once invoked), scanned A, original, MIT.

A report generator that summarizes how reliably each monitored service worked during a chosen period. SLA means a service-level agreement, a target for availability agreed with users or customers.

In plain words
What is it for?
Use it for monthly uptime reviews, customer or stakeholder updates, and post-incident reports that can be pasted into tools such as Confluence, Slack, or Notion.
Why use it?
It turns monitoring data into a Markdown report instead of requiring you to calculate uptime, downtime, and incidents yourself.

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/sla-report
Any agent
npx skills add uptimerobot/ai --skill sla-report
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 sla-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/uptimerobot/ai/sla-report.svg)](https://agentmods.dev/skills/uptimerobot/ai/sla-report)
Your own site
<a href="https://agentmods.dev/skills/uptimerobot/ai/sla-report"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/sla-report.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,755 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.00044 $0.01755
Opus 5 $0.00022 $0.00877
Sonnet 5 $0.00009 $0.00351
Haiku 4.5 $0.00004 $0.00176

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

Security

Grade A, and why

sla-report 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/sla-report/SKILL.md · 163 lines

How it starts

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

SLA report

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.

Produces a stakeholder-ready Markdown report of uptime % and incident stats for each monitor over a given time range. Designed for copy-paste into Confluence, Slack, Notion, or a post-mortem doc.

Use this when the user asks "what was our uptime last month?", "generate an SLA report", "how many nines did we hit?", or "monthly monitoring review".

Step 1 — Clarify scope and range

Before calling any tools, confirm two things if not already clear:

  1. Which monitors? All monitors, a search filter (e.g. "prod"), or an explicit list?
  2. What time range? Default to "30d". Accept "7d", "90d", or an ISO 8601 interval like "2026-04-01T00:00:00Z/2026-04-30T23:59:59Z".

If the user says "last month", convert to the ISO interval for the previous calendar month.

Step 2 — Account aggregate

{ "timeRange": "30d" }

Call get-monitor-stats to get the aggregate uptime % and total downtime for the opening summary.

Step 3 — List monitors in scope

{ "search": "prod", "limit": 50 }

Omit search to get all monitors. Paginate until hasMore: false. Collect monitorId, friendlyName, and status for every monitor in scope.

Exclude PAUSED and NOT_STARTED monitors from the report unless the user explicitly wants them — they have no meaningful uptime data for the range. Note how many were excluded.

Track any monitors currently in DOWN or SEEMS_DOWN state — they need a callout in the narrative.

Step 4 — Per-monitor incidents

For each monitor, fetch downtime incidents for the range:

{ "monitorId": 800123456, "timeRange": "30d", "limit": 50 }

Paginate until hasMore: false. Sum duration across all incidents to get total downtime seconds. Count the incidents.

Read the full file on GitHub · 163 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 · 163 lines · 44 tokens per session scan A c22ddc259222

Subscribe to this mod's changes

sla-report is a skill published in the GitHub repository uptimerobot/ai (24 stars, last pushed 23d ago), licensed MIT. It adds 44 tokens to every session and 1,755 once invoked, about $0.0002 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.