security-hardening-checklist

security-hardening-checklist is a skill for Claude Code, Codex from ChrisLamDev/hermes-core-skills. It costs 43 tokens per session (1,657 once invoked), scanned A, original, MIT.

A security checklist for software that handles user input, sign-in, stored data, or connections to outside services. It treats incoming data as potentially hostile and requires checking who is allowed to perform sensitive actions.

In plain words
What is it for?
Use it when building features with forms, uploads, webhooks, authentication, authorization, third-party APIs, or sensitive data.
Why use it?
It helps identify security risks before they become problems involving accounts, secrets, personal data, payments, or external integrations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it when building features with forms, uploads, webhooks, authentication, authorization, third-party APIs, or sensitive data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chrislamdev/hermes-core-skills/security-hardening-checklist
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.

Any agent
npx skills add ChrisLamDev/hermes-core-skills --skill security-hardening-checklist
Clone the repo
git clone --depth 1 https://github.com/ChrisLamDev/hermes-core-skills

Made for: Claude Code, Codex.

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 security-hardening-checklist

README.md
[![agentmods](https://agentmods.dev/badge/skills/chrislamdev/hermes-core-skills/security-hardening-checklist/github.svg)](https://agentmods.dev/skills/chrislamdev/hermes-core-skills/security-hardening-checklist)
Your own site
<a href="https://agentmods.dev/skills/chrislamdev/hermes-core-skills/security-hardening-checklist"><img src="https://agentmods.dev/badge/skills/chrislamdev/hermes-core-skills/security-hardening-checklist/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.

agentmods 80×15 button for security-hardening-checklist

Your own site · 80×15
<a href="https://agentmods.dev/skills/chrislamdev/hermes-core-skills/security-hardening-checklist"><img src="https://agentmods.dev/badge/skills/chrislamdev/hermes-core-skills/security-hardening-checklist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,657 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00043 $0.01657
Opus 5 $0.00022 $0.00829
Sonnet 5 $0.00009 $0.00331
Haiku 4.5 $0.00004 $0.00166

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

Security

Grade A, and why

security-hardening-checklist 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

os.system(f"ls {user_input}")
skills/security-hardening-checklist/SKILL.md · 179 lines

How it starts

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

Security Hardening Checklist

Overview

Security-first development practices. Treat every external input as hostile, every secret as sacred, and every authorization check as mandatory. Security isn't a phase — it's a constraint on every line of code that touches user data, authentication, or external systems.

When to Use

  • Building anything that accepts user input
  • Implementing authentication or authorization
  • Storing or transmitting sensitive data
  • Integrating with external APIs or services
  • Adding file uploads, webhooks, or callbacks
  • Handling payment or PII data
  • Mini Program specific: Handling user's WeChat OpenID, UnionID, or phone number

Process: Threat Model First

Controls bolted on without a threat model are guesses. Before hardening, spend five minutes thinking like an attacker:

  1. Map the trust boundaries. Where does untrusted data cross into your system? HTTP requests, form fields, file uploads, webhooks, third-party APIs, message queues, and LLM output. Every boundary is attack surface.

  2. Name the assets. What's worth stealing or breaking? Credentials, PII, payment data, admin actions, money movement.

  3. Run STRIDE over each boundary:

Threat Ask Typical mitigation
Spoofing Can someone impersonate a user/service? Authentication, signature verification
Tampering Can data be altered in transit or at rest? Integrity checks, parameterized queries, HTTPS
Repudiation Can an action be denied later? Audit logging of security events
Information disclosure Can data leak? Encryption, field allowlists, generic errors
Denial of service Can it be overwhelmed? Rate limiting, input size caps, timeouts
Elevation of privilege Can a user gain rights they shouldn't? Authorization checks, least privilege
  1. Write abuse cases next to use cases. For each feature, ask "how would I misuse this?" — then make that your first test.

If you can't name the trust boundaries for a feature, you're not ready to secure it. Most breaches begin in design, not code.

Read the full file on GitHub · 179 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. 11d ago First seen · 179 lines · 43 tokens per session scan A bab4d7c7e8e5

Subscribe to this mod's changes

security-hardening-checklist is a skill published in the GitHub repository ChrisLamDev/hermes-core-skills (9 stars, last pushed 2mo ago), licensed MIT. It adds 43 tokens to every session and 1,657 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.