Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add chaterm/terminal-skills --skill ssl-tlsgit clone --depth 1 https://github.com/chaterm/terminal-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/chaterm/terminal-skills/ssl-tls)<a href="https://agentmods.dev/skills/chaterm/terminal-skills/ssl-tls"><img src="https://agentmods.dev/badge/skills/chaterm/terminal-skills/ssl-tls/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/chaterm/terminal-skills/ssl-tls"><img src="https://agentmods.dev/badge/skills/chaterm/terminal-skills/ssl-tls.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00010 | $0.01619 |
| Opus 5 | $0.00005 | $0.00809 |
| Sonnet 5 | $0.00002 | $0.00324 |
| Haiku 4.5 | $0.00001 | $0.00162 |
Grade A, and why
ssl-tls scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl https://api.ssllabs.com/api/v3/analyze?host=example.com How it starts
The opening of the file, as written. The whole thing — 255 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SSL/TLS 证书
概述
证书申请、配置、自动续期技能。
OpenSSL 基础
生成私钥
# RSA 私钥
openssl genrsa -out private.key 2048
openssl genrsa -out private.key 4096
# 带密码保护
openssl genrsa -aes256 -out private.key 2048
# ECDSA 私钥
openssl ecparam -genkey -name prime256v1 -out private.key
生成 CSR
# 交互式
openssl req -new -key private.key -out request.csr
# 非交互式
openssl req -new -key private.key -out request.csr \
-subj "/C=CN/ST=Beijing/L=Beijing/O=Company/CN=example.com"
# 带 SAN
openssl req -new -key private.key -out request.csr \
-config <(cat <<EOF
[req]
distinguished_name = req_distinguished_name
req_extensions = v3_req
[req_distinguished_name]
CN = example.com
[v3_req]
subjectAltName = @alt_names
[alt_names]
DNS.1 = example.com
DNS.2 = www.example.com
DNS.3 = api.example.com
EOF
)
自签名证书
# 一步生成
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-keyout private.key -out certificate.crt \
-subj "/CN=example.com"
# 从已有私钥
openssl req -x509 -key private.key -days 365 -out certificate.crt
查看证书
# 查看证书信息
openssl x509 -in certificate.crt -text -noout
# 查看 CSR
openssl req -in request.csr -text -noout
# 查看私钥
openssl rsa -in private.key -text -noout
# 验证证书链
openssl verify -CAfile ca.crt certificate.crt
# 检查远程证书
openssl s_client -connect example.com:443 -servername example.com
格式转换
# PEM 转 DER
openssl x509 -in cert.pem -outform DER -out cert.der
# DER 转 PEM
openssl x509 -in cert.der -inform DER -out cert.pem
# PEM 转 PKCS12
openssl pkcs12 -export -out cert.p12 -inkey private.key -in cert.pem
# PKCS12 转 PEM
openssl pkcs12 -in cert.p12 -out cert.pem -nodes
Let's Encrypt
Certbot 安装
# Debian/Ubuntu
apt install certbot python3-certbot-nginx
# CentOS/RHEL
yum install certbot python3-certbot-nginx
申请证书
# Nginx 插件
certbot --nginx -d example.com -d www.example.com
# Apache 插件
certbot --apache -d example.com
# Standalone
certbot certonly --standalone -d example.com
# Webroot
certbot certonly --webroot -w /var/www/html -d example.com
# DNS 验证(通配符)
certbot certonly --manual --preferred-challenges dns -d "*.example.com"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 255 lines · 10 tokens per session scan A 0cbd52bab7f4
ssl-tls is a skill published in the GitHub repository chaterm/terminal-skills (59 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 10 tokens to every session and 1,619 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
acme
ACME protocol and SSL/TLS certificate automation reference. Covers challenge types (HTTP-01, DNS-01, TLS-ALPN-01), major clients (certbot, acme.sh, lego, Caddy), certificate lifecycle management, Kubernetes cert-manager, Docker/Traefik integration, and security best practices.
Cryptographic Analysis & Assessment
SSL/TLS auditing, cipher suite analysis, hash algorithm identification, encryption implementation review, and cryptographic weakness detection in code.
cryptography-expert
Expert in cryptographic algorithms, PKI, TLS/SSL, encryption standards, key management, and secure communication protocols. Use when the user mentions encryption, PKI, TLS, SSL, key management, or security, or when the task involves Cryptographic Fundamentals, Public Key Infrastructure, TLS/SSL Protocol, or Modern…
skillci-guardrails
Use this skill whenever you create, edit, or review a Claude Skill — any SKILL.md file, or the eval cases/config next to one. Most SKILL.md files today are written or edited by an agent, not typed by hand, so this closes the loop by having the agent that just wrote the skill also author it defensively and verify it…
acme.sh
Use when automating SSL/TLS certificate issuance and renewal from Let's Encrypt, ZeroSSL, or BuyPass — wildcard certs, DNS API mode for 150+ providers, Nginx/Apache auto-reload. acme.sh: pure Shell ACME client, zero dependencies, crontab-friendly auto-renewal.
ssl-tls
TLS certificate lifecycle — Let's Encrypt HTTP-01 and DNS-01 issuance, renewal automation, mTLS, HSTS, OCSP stapling, certificate inspection, and Nginx TLS hardening.