Install
openclaw skills install jrv-ssl-monitorCheck SSL/TLS certificate expiry, issuer, protocol, and SANs for one or more domains. Use when asked to check SSL certificates, monitor cert expiry, verify HTTPS is working, audit domain security, or check if a certificate is about to expire. Supports custom ports and warning thresholds. No external dependencies — uses Python stdlib ssl module.
openclaw skills install jrv-ssl-monitorCheck SSL certificate health for any domain — expiry, issuer, protocol version, and Subject Alternative Names.
python3 scripts/check_ssl.py example.com
python3 scripts/check_ssl.py example.com google.com github.com --warn-days 30
python3 scripts/check_ssl.py internal.host --port 8443 --json
| Flag | Description |
|---|---|
--warn-days N | Warning threshold in days (default: 14) |
--port PORT | Port to check (default: 443) |
--json | Output structured JSON |
--timeout N | Connection timeout in seconds (default: 10) |