ssl-certificate-management

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill ssl-certificate-management
0 commentsdiscussion
summary

Implement automated SSL/TLS certificate management across infrastructure, including provisioning, renewal, monitoring, and secure distribution to services.

skill.md

SSL Certificate Management

Table of Contents

Overview

Implement automated SSL/TLS certificate management across infrastructure, including provisioning, renewal, monitoring, and secure distribution to services.

When to Use

  • HTTPS/TLS enablement
  • Certificate renewal automation
  • Multi-domain certificate management
  • Wildcard certificate handling
  • Certificate monitoring and alerts
  • Zero-downtime certificate rotation
  • Internal PKI management

Quick Start

Minimal working example:

# cert-manager-setup.yaml
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
  name: letsencrypt-prod
spec:
  acme:
    server: https://acme-v02.api.letsencrypt.org/directory
    email: admin@myapp.com
    privateKeySecretRef:
      name: letsencrypt-prod
    solvers:
      # HTTP-01 solver for standard domains
      - http01:
          ingress:
            class: nginx
        selector:
          dnsNames:
            - "myapp.com"
            - "www.myapp.com"

      # DNS-01 solver for wildcard domains
      - dns01:
          route53:
            region: us-east-1
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Let's Encrypt with Cert-Manager Let's Encrypt with Cert-Manager
AWS ACM Certificate Management AWS ACM Certificate Management
Certificate Monitoring and Renewal Certificate Monitoring and Renewal
Automated Certificate Renewal Automated Certificate Renewal
Certificate Pinning Certificate Pinning

Best Practices

✅ DO

  • Automate certificate renewal
  • Use Let's Encrypt for public certs
  • Monitor certificate expiration
  • Use wildcard certs strategically
  • Implement certificate pinning
  • Rotate certificates regularly
  • Store keys securely
  • Use strong key sizes (2048+ RSA, 256+ ECDSA)

❌ DON'T

  • Manual certificate management
  • Self-signed certs in production
  • Share private keys
  • Ignore expiration warnings
  • Use weak key sizes
  • Mix dev and prod certs
  • Commit certs to git
  • Disable certificate validation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.767 reviews
  • Pratham Ware· Dec 28, 2024

    Useful defaults in ssl-certificate-management — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Aanya Torres· Dec 28, 2024

    Solid pick for teams standardizing on skills: ssl-certificate-management is focused, and the summary matches what you get after install.

  • Alexander Shah· Dec 24, 2024

    Useful defaults in ssl-certificate-management — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Min Kapoor· Dec 20, 2024

    ssl-certificate-management has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Aditi Menon· Dec 12, 2024

    I recommend ssl-certificate-management for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Yash Thakker· Nov 19, 2024

    ssl-certificate-management is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Jin Choi· Nov 15, 2024

    ssl-certificate-management is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Ishan Garcia· Nov 11, 2024

    ssl-certificate-management fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Sophia Singh· Nov 7, 2024

    ssl-certificate-management reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Aanya Garcia· Nov 3, 2024

    Registry listing for ssl-certificate-management matched our evaluation — installs cleanly and behaves as described in the markdown.

showing 1-10 of 67

1 / 7