โ† All skills
Tencent SkillHub ยท Communication & Collaboration

Service Watchdog

Monitors self-hosted services by checking HTTP endpoints, TCP ports, SSL expiry, and DNS resolution, then reports status and alerts in concise, chat-friendly...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Monitors self-hosted services by checking HTTP endpoints, TCP ports, SSL expiry, and DNS resolution, then reports status and alerts in concise, chat-friendly...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, watchdog.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

Service Watchdog

Lightweight service and endpoint monitoring for self-hosted infrastructure. Checks HTTP endpoints, TCP ports, SSL certificate expiry, and DNS resolution โ€” then reports status in a clean, chat-friendly format.

What It Does

HTTP Health Checks โ€” GET/POST with expected status codes, response time tracking, content matching TCP Port Checks โ€” Verify services are listening (databases, mail servers, game servers, etc.) SSL Certificate Monitoring โ€” Days until expiry, issuer info, auto-warn thresholds DNS Resolution โ€” Verify domains resolve correctly, detect DNS hijacking Smart Summaries โ€” One-glance status for all your services, with trend data Alert Logic โ€” Configurable thresholds, cooldowns, and severity levels to prevent alert fatigue

1. Create a watchlist

Create watchdog.json in your workspace root: { "services": [ { "name": "Home Assistant", "type": "http", "url": "http://192.168.1.100:8123", "expect_status": 200, "timeout_ms": 5000 }, { "name": "Proxmox", "type": "https", "url": "https://proxmox.local:8006", "expect_status": 200, "ssl_warn_days": 14, "timeout_ms": 5000 }, { "name": "PostgreSQL", "type": "tcp", "host": "db.local", "port": 5432, "timeout_ms": 3000 }, { "name": "My Domain", "type": "dns", "domain": "example.com", "expect_ip": "93.184.216.34" } ], "defaults": { "timeout_ms": 5000, "ssl_warn_days": 14, "alert_cooldown_min": 30, "history_retention_days": 30 } }

2. Run a check

bash skills/service-watchdog/watchdog.sh Output example: ๐ŸŸข Home Assistant โ€” 200 OK (142ms) ๐ŸŸข Proxmox โ€” 200 OK (89ms) | SSL: 47 days ๐ŸŸข PostgreSQL โ€” port 5432 open (12ms) ๐ŸŸข My Domain โ€” resolves to 93.184.216.34 โœ“ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” 4/4 healthy | avg response: 81ms | checked: 2026-02-24 16:30 UTC

3. Detailed report

bash skills/service-watchdog/watchdog.sh --report Shows trend data: uptime percentage, P95 response times, incident history.

4. JSON output (for cron integration)

bash skills/service-watchdog/watchdog.sh --json

5. Check SSL only

bash skills/service-watchdog/watchdog.sh --ssl-only

6. Alert summary (for messaging)

bash skills/service-watchdog/watchdog.sh --alerts-only Only outputs services that need attention (down, slow, SSL expiring).

Cron Integration

Add to your OpenClaw cron for continuous monitoring: Every 5 minutes (lightweight check): Run `bash skills/service-watchdog/watchdog.sh --json` and report only if any service is unhealthy. Daily SSL report: Run `bash skills/service-watchdog/watchdog.sh --ssl-only` and report expiring certificates.

Service types

TypeRequired FieldsOptional Fieldshttp / httpsurlexpect_status, expect_body, method, headers, timeout_ms, ssl_warn_daystcphost, porttimeout_msdnsdomainexpect_ip, nameserver

Global defaults

FieldDefaultDescriptiontimeout_ms5000Request timeoutssl_warn_days14SSL expiry warning thresholdalert_cooldown_min30Min minutes between repeated alertshistory_retention_days30How long to keep check historyhistory_filewatchdog-history.csvPath for check history data

How the Agent Should Use This

When the user asks about service status, infrastructure health, or "are my services up?": Run bash skills/service-watchdog/watchdog.sh for a quick overview Run with --report for detailed trends and history Run with --alerts-only for just the problems Run with --ssl-only to check certificate status Run with --json when you need structured data for further analysis For proactive monitoring, run checks in cron jobs and only alert the user when something is wrong.

Requirements

curl (for HTTP/HTTPS checks) openssl (for SSL certificate checks) nc or ncat (for TCP port checks) โ€” falls back to bash /dev/tcp if unavailable dig or nslookup (for DNS checks) โ€” falls back to host command jq (for JSON config parsing) All standard on most Linux distributions. No external APIs or accounts needed.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • watchdog.sh Scripts