update-monitor

update-monitor is a skill for Claude Code from uptimerobot/ai. It costs 41 tokens per session (2,379 once invoked), scanned A, original, MIT.

A command for changing an existing UptimeRobot monitor. UptimeRobot is a service that checks whether websites and other endpoints are available.

In plain words
What is it for?
Use it to rename a monitor, change its URL or checking interval, update alert contacts and tags, adjust HTTP, keyword, API, or heartbeat settings, and toggle SSL or domain reminders.
Why use it?
It avoids manually rebuilding a monitor when only part of its settings needs to change. It first finds the correct monitor and verifies the updated configuration.

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

Good fit Use it to rename a monitor, change its URL or checking interval, update alert contacts and tags, adjust HTTP, keyword, API, or heartbeat settings, and toggle SSL or domain reminders.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uptimerobot/ai/update-monitor
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.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/uptimerobot/ai/update-monitor/github.svg)](https://agentmods.dev/skills/uptimerobot/ai/update-monitor)
Your own site
<a href="https://agentmods.dev/skills/uptimerobot/ai/update-monitor"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/update-monitor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for update-monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/uptimerobot/ai/update-monitor"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/update-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,379 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 35
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00041 $0.02379
Opus 5 $0.00020 $0.01189
Sonnet 5 $0.00008 $0.00476
Haiku 4.5 $0.00004 $0.00238

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

Security

Grade A, and why

update-monitor 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 12d 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/update-monitor/SKILL.md · 226 lines

How it starts

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

Update an existing monitor

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.

Uses the update-monitor tool. All updates are partial — only send the fields you want to change. Monitor type is immutable; delete and recreate if you need a different type.

Before you call

  1. Resolve the monitorId with list-monitors (search by name) — never guess an ID.
  2. get-monitor-details to read the current config. You'll need it for the array fields below.
  3. Call update-monitor with just the changed fields.
  4. get-monitor-details again to verify. Replication lag can make a follow-up list-monitors look stale.

Array fields overwrite (not merge)

assignedAlertContacts and tagNames are full replacements. To add or remove a single item, read-modify-write using the list from get-monitor-details.

Use cases

1. Rename a monitor

{ "monitorId": 800123456, "friendlyName": "Production API (us-east-1)" }

2. Change the target URL

{ "monitorId": 800123456, "url": "https://api.example.com/v2/health" }

Only valid for URL-based types (HTTP, KEYWORD, PING, PORT, DNS, API, UDP). HEARTBEAT monitors have no url — the push URL is fixed at creation.

3. Adjust the check interval

{ "monitorId": 800123456, "interval": 60 }

Range: 3086400 seconds. 30 s is paid plans only — Free returns -28002 subscription_limit_exceeded.

4. Tune request timeout and slow-response threshold

{
  "monitorId": 800123456,
  "timeout": 15,
  "responseTimeThreshold": 2000
}
  • timeout — 1–60 s. Not valid on HEARTBEAT.
  • responseTimeThreshold — ms, 0 disables. Applies to every active region.

5. Heartbeat grace period

Read the full file on GitHub · 226 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. 12d ago First seen · 226 lines · 41 tokens per session scan A 2cdab4bc3465

Subscribe to this mod's changes

update-monitor is a skill published in the GitHub repository uptimerobot/ai (24 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 2,379 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.

Related

Other skills, from other repositories

cis-aws-compute-2.14

Ensure EC2 Auto Scaling Groups Propagate Tags to EC2 Instances that it launches.

CyberStrikeus/CyberStrike · 26 tokens

safe-update-restart

Safe update/restart procedure for a production Hermes VPS that runs many live APIs, services, and multiple agent gateways sharing one venv. Full backup → controlled window → restart → verify every service and endpoint after. Never blind-restart.

Gentech-Labs/genTech-agent-kit · 52 tokens

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens