Install
openclaw skills install ssl-certcheckCheck SSL/TLS certificates for any hostname — expiry dates, issuer, SANs, protocol version, cipher suite. Use when asked to check if a certificate is valid, see when a cert expires, inspect TLS details, or audit HTTPS security. Alerts on expired or soon-to-expire certs. Zero dependencies — pure Python ssl/socket.
openclaw skills install ssl-certcheckSSL/TLS certificate inspector with expiry alerts.
# Check one or more hosts
python3 scripts/certcheck.py github.com google.com openclaw.ai
# JSON output for scripting
python3 scripts/certcheck.py --json example.com
# Custom expiry warning threshold (default 30 days)
python3 scripts/certcheck.py --days 60 mysite.com
# Custom port
python3 scripts/certcheck.py -p 8443 internal.example.com