Ping endpoints check SSL expiry monitor via Telegram cron
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill uptime-monitoring --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Uptime Monitoring?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-uptime-monitoring)More formats (shields.io, HTML) on the badges page.
---
name: uptime-monitoring
description: "Ping endpoints check SSL expiry monitor via Telegram cron"
---
# Uptime Monitoring
## Simple Health Check
```bash
#!/bin/bash
URL="https://example.com"
STATUS=$(curl -s -o /dev/null -w "%{http_code}" $URL)
if [ "$STATUS" != "200" ]; then
echo "DOWN: $URL returned $STATUS"
fi
```
## SSL Expiry Check
```bash
#!/bin/bash
EXPIRY=$(echo | openssl s_client -servername example.com -connect example.com:443 2>/dev/null | openssl x509 -noout -enddate)
echo "SSL: $EXPIRY"
```
## Cron + Telegram
```bash
hermes cron create --schedule "*/5 * * * *" --script scripts/uptime.sh --no-agent --deliver telegram
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!