ssl-cert-toolkit

ssl-cert-toolkit is a skill for Claude Code from AI-Shell-Team/aish. It costs 75 tokens per session (1,444 once invoked), scanned B, original, Apache-2.0.

A local command-line toolkit for working with SSL/TLS certificates, which secure encrypted connections to websites and services. It uses OpenSSL to inspect certificates, compare related files, create certificate requests, convert formats, and check certificate chains.

In plain words
What is it for?
Use it to check expiry dates, names, issuers, certificate chains, and whether a private key matches a certificate or CSR. It can also create CSRs and convert PEM and PFX/P12 files.
Why use it?
It helps diagnose certificate problems and prepare certificate files without relying on cloud certificate services. It also avoids common mistakes such as treating unreadable certificate data as a valid match.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Install

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.

agentmods
npx agentmods add skills/ai-shell-team/aish/ssl-cert-toolkit
Any agent
npx skills add AI-Shell-Team/aish --skill ssl-cert-toolkit
Clone the repo
git clone --depth 1 https://github.com/AI-Shell-Team/aish

Made for: Claude Code.

Wrote 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.

agentmods badge for ssl-cert-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/ai-shell-team/aish/ssl-cert-toolkit.svg)](https://agentmods.dev/skills/ai-shell-team/aish/ssl-cert-toolkit)
Your own site
<a href="https://agentmods.dev/skills/ai-shell-team/aish/ssl-cert-toolkit"><img src="https://agentmods.dev/badge/skills/ai-shell-team/aish/ssl-cert-toolkit.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,444 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.01444
Opus 5 $0.00037 $0.00722
Sonnet 5 $0.00015 $0.00289
Haiku 4.5 $0.00007 $0.00144

Measured 6d ago against content hash eed963b85ca4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

ssl-cert-toolkit scanned grade B 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 6d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- Next steps (submit CSR, deploy where, `chmod 600`)
skills/ssl-cert-toolkit/SKILL.md · 177 lines

How it starts

The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SSL certificate toolkit

Use openssl on this host to inspect certificates, verify key/cert/CSR pairing, generate CSRs, convert common formats, and run simple validation.

Out of scope: cloud purchase/upload/deploy APIs, silently changing the system trust store, submitting CA requests for the user.

Rules

  1. Clarify intent first: inspect / match / generate CSR / convert / verify—ask if unclear.
  2. Confirm before writing files: confirm output paths; do not overwrite existing files unless asked.
  3. Protect private keys: never paste key material into chat; suggest mode 0600; do not log key bodies.
  4. Dependency: require openssl (command -v openssl). keytool only for JKS.
  5. Stop when enough: after match/inspect succeeds, do not “optimize” unrelated files.
  6. Fail closed on match: if OpenSSL cannot parse an input, report that—never treat empty digests as MATCH.

Capabilities

Intent Example asks
Inspect validity dates, SAN, issuer
Match are cert and key a pair; does CSR match
Generate CSR create CSR to get a signed cert
Convert PEM ↔ PFX/P12, split chain
Verify chain OK, expired or not

Inspect

openssl version
openssl x509 -in <cert.pem> -noout -subject -issuer -dates -ext subjectAltName 2>/dev/null
openssl x509 -in <cert.pem> -noout -text | head -80

For PFX, ask for the password; prefer -passin env:CERT_PASS over putting secrets on the command line:

openssl pkcs12 -in <file.pfx> -nokeys -clcerts -passin env:CERT_PASS

Match check (cert / key / CSR)

Compare public keys (preferred) or RSA moduli. Each openssl extract must succeed and produce non-empty output before comparing:

openssl x509 -in <cert.pem> -noout -pubkey | openssl md5
openssl pkey -in <key.pem> -pubout | openssl md5
openssl req -in <csr.pem> -noout -pubkey | openssl md5   # if CSR given

Parse failure or empty digest → not MATCH. Equal non-empty digests → MATCH.
Optional: openssl req -in <csr.pem> -noout -verify (CSR signature; separate from key match).

Read the full file on GitHub · 177 lines

Changes

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.

  1. 6d ago First seen · 177 lines · 75 tokens per session scan B eed963b85ca4

Subscribe to this mod's changes

ssl-cert-toolkit is a skill published in the GitHub repository AI-Shell-Team/aish (529 stars, last pushed 2d ago), licensed Apache-2.0. It adds 75 tokens to every session and 1,444 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

completion-script-generator

Generates shell completion scripts for CLI tools. Parses command structure from help output, commander/yargs configs, or manual specification. Produces completions for bash, zsh, and fish that follow each shell's conventions.

curiositech/windags-skills · 50 tokens

taskgo

Maintains a private Git-backed personal project and task control repository using concise current Markdown, derived Git history, ADRs, and status synchronization. Use when tracking tasks, updating project status (STATUS.md), managing ADRs, synchronizing tracker state, delegating tasks to external agents, or generating…

ithinkihaveacat/dotfiles · 73 tokens

wear-widget

Workflows, checklists, and scripts for reverse-engineering, analyzing, and extracting Wear OS and Android widgets (Glance, AppWidget, ProtoLayout Tiles). Covers manifest declarations, XML configurations, preview asset extraction, and AVD rendering. Use when analyzing APK widget features, extracting widget…

ithinkihaveacat/dotfiles · 81 tokens

jetpack

Looks up AndroidX and Jetpack library facts that change between releases: current artifact versions (ALPHA, BETA, RC, STABLE, SNAPSHOT, build IDs), Maven coordinates for classes/packages, direct dependencies, and published source code. Use when looking up AndroidX/Jetpack library versions, finding Maven coordinates…

ithinkihaveacat/dotfiles · 98 tokens

emumanager

Manages Android SDKs, system images, emulators, and Android Virtual Devices (AVDs). Provides workflows for bootstrapping the SDK, downloading images, and creating, starting, or stopping AVDs across mobile, Wear OS, TV, and Automotive form factors. Use when setting up Android SDK tools, launching or debugging…

ithinkihaveacat/dotfiles · 84 tokens

agent-review

Conducts independent, read-only code reviews of branches, diffs, commits, working trees, or pull requests using external CLI agents (Codex, Claude, agy) or a synthesized review workflow. Focuses strictly on actionable defects and evidence-based findings. Use when reviewing code changes, requesting a second opinion on…

ithinkihaveacat/dotfiles · 91 tokens