Security Checklist

Security Checklist is a skill for Claude Code, Codex from niels-emmer/myace. It costs 23 tokens per session (809 once invoked), scanned A, original, MIT.

A repeatable PASS, FAIL, or N/A checklist for security-sensitive code changes. It covers areas such as input handling, authentication, database access, file paths, network calls, and tokens.

In plain words
What is it for?
Use it when reviewing changes involving user input, access control, queries, files, external services, cryptography, sessions, or dependencies.
Why use it?
It makes security reviews consistent instead of relying on whatever risks the reviewer happens to remember.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for aider. Also seen: mentions Codex; built for aider; mentions OpenCode.

Good fit Use it when reviewing changes involving user input, access control, queries, files, external services, cryptography, sessions, or dependencies.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/niels-emmer/myace/security-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 niels-emmer/myace --skill security-checklist
Clone the repo
git clone --depth 1 https://github.com/niels-emmer/myace

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 Checklist

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/niels-emmer/myace/security-checklist"><img src="https://agentmods.dev/badge/skills/niels-emmer/myace/security-checklist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 809 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00023 $0.00809
Opus 5 $0.00012 $0.00404
Sonnet 5 $0.00005 $0.00162
Haiku 4.5 $0.00002 $0.00081

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

Security

Grade A, and why

Security Checklist scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

collections/base/software-engineer/skills/security-checklist/SKILL.md · 33 lines

How it starts

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

Purpose

A security review without a structure tends to catch whatever the reviewer happens to think of that day and miss whatever they don't. This checklist gives a repeatable set of categories to walk through explicitly for any change that touches input handling, auth, data access, or external systems, so coverage doesn't depend on what's top of mind. It's the working tool behind the security-auditor agent, but it's usable by anyone reviewing a diff.

When to use it

For any change touching: user input (forms, query params, file uploads, API payloads), authentication or authorization logic, database queries, file paths or filesystem access, external API/network calls, cryptography or session/token handling, or dependency additions/updates. Skip it for changes with none of the above (e.g., a pure UI copy change) — mark the whole review N/A rather than force-fitting categories that don't apply.

The checklist

Walk each category and mark it PASS (verified, no issue), FAIL (issue found — blocking), or N/A (doesn't apply to this diff), with a one-line note for anything not PASS/N/A:

  1. Injection — Are all queries parameterized (no string-concatenated SQL)? Are shell commands built without interpolating untrusted input? Are file paths validated against traversal (../) before use? Is user input reflected into templates/HTML escaped by default?
  2. Authentication — Does this path require authentication where it should? Are session/token checks happening on every request that needs them, not just the first one in a flow?
  3. Authorization — Does this check ownership or permission, not just that the requester is logged in? (A logged-in user reaching another user's resource is the single most common authz bug — verify the check compares the resource's owner to the current user, not just is_authenticated.)
  4. Secrets handling — Are there any hardcoded credentials, API keys, or tokens in this diff? Are secrets read from environment/secret storage rather than committed config? Are secrets excluded from logs and error messages?
  5. Dependency risk — Is a new dependency actively maintained and from a trustworthy source? Does a version bump's changelog mention security fixes worth noting? Is the dependency's permission footprint (network access, filesystem access) proportionate to what it's used for?
  6. Data exposure — Does an API response or log line include more data than the caller needs (e.g., full user objects instead of the specific fields required)? Is PII handled consistent with how the rest of the codebase treats it?
  7. Cryptography and sessions, where relevant — Are standard library/vetted implementations used instead of hand-rolled crypto? Do session tokens have reasonable expiry and get invalidated on logout/password change?
  8. Input validation boundaries — Is untrusted input validated (type, length, format, range) at the boundary where it enters the system, not assumed valid deeper in the call stack?

Read the full file on GitHub · 33 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 · 33 lines · 23 tokens per session scan A bf4353cf8cba

Subscribe to this mod's changes

Security Checklist is a skill published in the GitHub repository niels-emmer/myace (1 stars, last pushed 3d ago), licensed MIT. It adds 23 tokens to every session and 809 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.