maintenance-windows

maintenance-windows is a skill for Claude Code, Codex from uptimerobot/ai. It costs 26 tokens per session (1,040 once invoked), scanned A, original, MIT.

A feature for scheduling one-time or repeating periods when planned downtime should not trigger alerts.

In plain words
What is it for?
Quieting alerts during scheduled deployments, maintenance, patching, or other planned downtime.
Why use it?
It prevents alert noise while monitors continue checking and remain visible.

Skill for Claude CodeCodex

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/maintenance-windows
Any agent
npx skills add uptimerobot/ai --skill maintenance-windows
Clone the repo
git clone --depth 1 https://github.com/uptimerobot/ai

Made for: Claude Code, Codex.

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 maintenance-windows

README.md
[![agentmods](https://agentmods.dev/badge/skills/uptimerobot/ai/maintenance-windows.svg)](https://agentmods.dev/skills/uptimerobot/ai/maintenance-windows)
Your own site
<a href="https://agentmods.dev/skills/uptimerobot/ai/maintenance-windows"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/maintenance-windows.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,040 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 $0.00026 $0.01040
Opus 5 $0.00013 $0.00520
Sonnet 5 $0.00005 $0.00208
Haiku 4.5 $0.00003 $0.00104

Measured 4d ago against content hash dc956cfc29e8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

maintenance-windows 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 4d 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/maintenance-windows/SKILL.md · 79 lines

How it starts

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

Maintenance windows

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.

Requires the maintenance-window plan feature.

Decision: maintenance window vs. bulk-pause

Both stop alert noise during planned downtime, but they work differently:

Maintenance window bulk-pause
What changes Alerts only — monitor keeps checking and its state stays visible Monitor itself stops checking (status: PAUSED)
Timing Scheduled in advance, can recur Immediate, manual resume
Resume cap risk None — monitor was never paused Resuming can hit -28001 monitor_limit_exceeded
Best for Known, recurring, or future-dated downtime (deploy windows, patching schedule) Ad-hoc, right-now, or a monitor that needs to fully stop

Default to a maintenance window whenever the downtime is planned ahead of time or repeats. Use bulk-pause for "pause it right now" requests.

Creating a window

{
  "name": "Weekly DB patching",
  "interval": "weekly",
  "date": "2026-07-06",
  "time": "02:00:00",
  "duration": 90,
  "days": [1],
  "monitorIds": [800111, 800222]
}
  • date/time are the first occurrence; time is UTC — confirm the user's intended timezone and convert before calling.
  • days is required for weekly (1–7, ISO weekday) and monthly (1–31, or -1 for "last day of the month") recurrence. Omitting it on a recurring window is a validation error, not a silent default.
  • duration is minutes the window stays active from the daily start time — not an end date.
  • autoAddMonitors: true includes every monitor, including ones created later. Confirm with the user before using it — it's easy to end up suppressing alerts for something unrelated.

Read the full file on GitHub · 79 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. 4d ago First seen · 79 lines · 26 tokens per session scan A dc956cfc29e8

Subscribe to this mod's changes

maintenance-windows is a skill published in the GitHub repository uptimerobot/ai (24 stars, last pushed 21d ago), licensed MIT. It adds 26 tokens to every session and 1,040 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.

Related

Other skills, from other repositories

api-endpoints

Adding or changing API operations in @repo/operations. One source of truth (defineOperation + a Zod schema) becomes an HTTP endpoint, an OpenAPI operation, an MCP tool, TS + Python SDK methods, a latitude CLI command, and an in-process agent tool — descriptions and contracts must be written with all of these readers…

latitude-dev/latitude-llm · 78 tokens

fix-datadog-issues

Find, triage, and fix production errors captured by Datadog Error Tracking, then open a PR. Use when asked to look at "Datadog issues/incidents/errors", "find and fix bugs from Datadog", investigate the most-frequent or newest production errors, or work a specific Datadog Error Tracking issue.

latitude-dev/latitude-llm · 76 tokens

web-frontend

When to use: apps/web UI — routes, @repo/ui, TanStack Start server functions and collections, navigation (Link vs useNavigate), forms (useForm with createFormSubmitHandler + fieldErrorsAsStrings when Zod validation errors should appear on fields), Tailwind layout rules, design-system updates, and useEffect /…

latitude-dev/latitude-llm · 67 tokens

database-postgres

Drizzle schema, repositories, RLS, SqlClient wiring, Postgres migrations, psql / reset, or platform mappers (toDomain / toInsertRow).

latitude-dev/latitude-llm · 39 tokens

notifications

Multi-channel notifications. Adding a new notification kind, group, or channel; in-app + email delivery; per-user prefs; project-level gates; idempotency.

latitude-dev/latitude-llm · 35 tokens

async-jobs-and-events

Queues and workers, domain event publishers, async notifications or projections, or not doing that work inside HTTP handlers.

latitude-dev/latitude-llm · 28 tokens