Skip to content
Development
Skill

/sota-secrets-management

State-of-the-art secrets management for building and auditing software. Use whenever a task involves creating, storing, injecting, rotating, or scanning for credentials — or reviewing code/infrastructure for secret leaks and misuse. BUILD mode: implementing secrets handling;

From plugin
sota-skills
2342 skills1 hook
Install
$ npx -y skills add martinholovsky/SOTA-skills --skill sota-secrets-management --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/sota-secrets-management

Context preview

The summary Claude sees to decide when to auto-load this skill.

State-of-the-art secrets management for building and auditing software. Use whenever a task involves creating, storing, injecting, rotating, or scanning for credentials — or reviewing code/infrastructure for secret leaks and misuse. BUILD mode: implementing secrets handling;

SKILL.md

sota-secrets-management.SKILL.md
name: sota-secrets-management
description: >-
  State-of-the-art secrets management for building and auditing software. Use
  whenever a task involves creating, storing, injecting, rotating, or scanning
  for credentials — or reviewing code/infrastructure for secret leaks and
  misuse. BUILD mode: implementing secrets handling; AUDIT mode: sweeping a
  repo for leaked, hardcoded, or mishandled secrets. Trigger keywords: secret,
  secrets management, credential, API key, token, password, private key,
  signing key, JWT secret, TLS key, SSH key, database password, connection
  string, .env, dotenv, environment variable, Vault, OpenBao, AWS Secrets
  Manager, GCP Secret Manager, Azure Key Vault, KMS, envelope encryption,
  SOPS, age, sealed-secrets, external-secrets, workload identity, OIDC
  federation, SPIFFE, SPIRE, IAM role, GitHub Actions OIDC, short-lived
  credential, rotation, revocation, key expiry, gitleaks, trufflehog, secret
  scanning, leaked key, hardcoded secret, committed secret, git history purge,
  honeytoken, pre-commit hook, kid rotation.

SOTA Secrets Management

Purpose

Eliminate static secrets where possible; where not possible, make every secret short-lived, narrowly scoped, runtime-injected, auditable, and rotatable without downtime. This skill covers the full lifecycle (generation → distribution → storage → use → rotation → revocation → expiry), storage backends, application handling patterns, leak detection, incident remediation, and per-credential-type rules. It serves two workflows: **BUILD** (write correct secrets handling into new or existing code) and **AUDIT** (sweep a repo for secret issues and report findings).

The hierarchy of preference, always:

1. **No secret at all** — workload identity / OIDC federation / cloud IAM roles. 2. **Short-lived, auto-issued secret** — Vault dynamic creds, STS tokens, SPIRE SVIDs. 3. **Long-lived secret in a managed backend** — secret manager + rotation + audit log. 4. **Encrypted secret in the repo** — SOPS+age / sealed-secrets, GitOps only. 5. **Plaintext secret anywhere** — never acceptable.

When you write or review code, push the design as far up this hierarchy as the platform allows, and document why if you stop below level 2.

BUILD mode

Use when implementing anything that consumes or manages a credential.

1. **Classify the credential.** Type (DB cred, API key, signing key, TLS key, …) determines the rules — read `rules/05-credential-types.md` for the matching section before writing code. 2. **Try to eliminate it.** Cloud-to-cloud or CI-to-cloud calls should use workload identity (OIDC, IAM roles, SPIFFE) — see `rules/01-lifecycle-and-workload-identity.md`. Only fall back to a stored secret when no federation path exists (e.g., third-party SaaS API key). 3. **Pick the storage backend** per environment using the decision table in `rules/02-storage-backends.md`. Never invent a custom encrypted store. 4. **Wire injection at runtime** — file mount or env var populated by the platform, fetched via SDK with caching/TTL, never baked into images or code. Patterns and good/bad pairs in `rules/03-application-patterns.md`. 5. **Design rotation before shipping.** Every secret needs: an owner, a rotation procedure that works with zero downtime (dual-secret / kid overlap), an expiry or rotation interval, and a revocation path. If you cannot answer "how do we rotate this at 3am during an incident," the design is not done. 6. **Add guardrails:** pre-commit scanning config, CI secret-scan gate, `.gitignore` entries for `.env*` and key files, log-scrubbing for the new secret's shape (`rules/04-detection-and-remediation.md`). 7. **Self-review against the Audit checklist** at the end of every rules file you used.

AUDIT mode

Use when asked to find secret leaks/misuse in an existing repo.

Sweep procedure

1. **Tooling pass (if available):** run `gitleaks git --redact .` and/or `trufflehog filesystem .` (and `git log` history scan when the repo has history). Treat tool output as candidates, not verdicts — verify each hit. 2. **Manual grep pass** for what tools miss. Sweep at minimum:

  • High-entropy strings and known prefixes: `AKIA`, `ASIA`, `ghp_`, `gho_`, `github_pat_`,

`xoxb-`, `xoxp-`, `sk-`, `sk_live_`, `rk_live_`, `AIza`, `ya29.`, `glpat-`, `npm_`, `dop_v1_`, `shpat_`, `eyJhbGciOi` (inline JWTs), `-----BEGIN .* PRIVATE KEY-----`.

  • Assignment patterns: `(password|passwd|pwd|secret|token|api[_-]?key|auth)\s*[:=]\s*['"][^'"]{6,}`.
  • Connection strings with embedded creds: `://[^/:@\s]+:[^@\s]+@` (postgres, mysql, mongodb,

amqp, redis URLs).

  • Files: `.env*` tracked in git, `*.pem`, `*.p12`, `*.pfx`, `*.key`, `*.jks`, `*.keystore`,

`id_rsa*`, `credentials.json`, `serviceaccount*.json`, `kubeconfig`, `.npmrc`/`.pypirc` with tokens, `terraform.tfstate` (state files contain plaintext secrets). 3. **History pass:** `git log -p` / `gitleaks git --log-opts` for secrets removed from HEAD but live in history. A secret deleted in a later commit is **still leaked** — severity is unchanged. 4. **Handling pass (misuse, not just leaks):** secrets in log statements, error messages, exception payloads, crash/telemetry dumps, URLs/query strings, CLI args (visible in `ps`), Dockerfile `ENV`/`ARG`, docker-compose `environment:` literals, Kubernetes manifests with stringData/base64 secrets committed, CI YAML with inline values, debug endpoints dumping config, world-readable key files, missing rotation/expiry on long-lived tokens, overly broad token scopes. 5. **Verify and triage** each finding: is the value real (test-shaped? placeholder? entropy?), is it currently valid, what blast radius. Never call a credential live by invoking it against production without explicit permission; judge from context.

Severity conventions

| Severity | Definition | Examples | |---|---|---| | **Critical** | Valid (or must-assume-valid) se

Read more
Ships withsota-skills

Make your AI coding assistant build and audit like your most senior engineer. Your assistant is brilliant — it just doesn't know your standards, and it forgets the ones it does know as the task grows long.

Get the whole plugin
Stats
23
Stars
4
Forks
Active
Maintenance
Python
Language
CC-BY-4.0
License
12h ago
Last commit
2mo ago
Created

Repo: martinholovsky/SOTA-skills

Other skills on sota-skills.