security-review

security-review is a skill for Claude Code from lantisprime/claude-sdlc. It costs 113 tokens per session (873 once invoked), scanned A, original, MIT.

A security review guide for the code changes in the current difference from the base version.

In plain words
What is it for?
It reviews changed application code, dependencies, infrastructure settings, and pipeline configuration for security problems.
Why use it?
It catches vulnerabilities before changes are merged, including weak input checks, incorrect permissions, exposed secrets, and injection risks.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the sdlc-plugin plugin — 18 skills, 16 commands, 10 agents, 4 hooks shipped together

Good fit It reviews changed application code, dependencies, infrastructure settings, and pipeline configuration for security problems.

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

Made for: Claude Code.

Or install sdlc-plugin, the plugin that ships this one along with the rest of its 18 skills, 16 commands, 10 agents, 4 hooks.

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-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/lantisprime/claude-sdlc/security-review/github.svg)](https://agentmods.dev/skills/lantisprime/claude-sdlc/security-review)
Your own site
<a href="https://agentmods.dev/skills/lantisprime/claude-sdlc/security-review"><img src="https://agentmods.dev/badge/skills/lantisprime/claude-sdlc/security-review/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-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/lantisprime/claude-sdlc/security-review"><img src="https://agentmods.dev/badge/skills/lantisprime/claude-sdlc/security-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 873 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.00113 $0.00873
Opus 5 $0.00056 $0.00436
Sonnet 5 $0.00023 $0.00175
Haiku 4.5 $0.00011 $0.00087

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

Security

Grade A, and why

security-review 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 8d 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.

skills/security-review/SKILL.md · 90 lines

How it starts

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

Security Review

Review the current diff for security issues. Do not review unchanged code — that's out of scope and distracts from the change under review.

Scope

  • The diff produced by the current Build (git diff against the base branch / last tested state)
  • Dependency manifests if touched (requirements.txt, package.json, go.mod, etc.)
  • Infra-as-code and pipeline config if touched

Checks

1. Input validation

  • All external input validated at the boundary (type, range, length, charset, schema)
  • No implicit trust of headers, query params, cookies, body fields, env vars, or file contents

2. Authentication & authorization

  • New endpoints/actions are behind the expected authN
  • AuthZ checked at the right layer (route or service) — not relying on the UI
  • Role/permission checks use the existing helpers, not ad-hoc logic

3. Secrets

  • No secrets in code, tests, logs, commit messages, or error responses
  • Secrets loaded from the configured secret manager, not env files committed
  • hooks/secret-scan.sh runs as a hard gate — this skill's review complements it

4. Injection surfaces

  • Parameterized queries for SQL (no string concatenation)
  • Safe shell invocation (no shell-interpolated user input)
  • Template engines used with auto-escape on; raw output only where reviewed
  • Prompt injection: user-controlled content never placed in system/developer position of an LLM call; tool outputs and web content treated as untrusted

5. Dependencies

  • New deps justified, licensed appropriately, maintained
  • Pinned to a specific version; lockfile updated
  • Scanner (per config/tools.json) run against the new manifest

6. Sensitive data

  • PII, credentials, tokens identified and handled per the data architecture's classification
  • Logs redact sensitive fields
  • No sensitive data in URL paths or query strings

7. Output encoding & headers

  • HTML/JSON/URL encoding at the right boundary
  • Security headers set (CSP, HSTS, X-Frame-Options, etc.) for new surfaces
  • CORS configured explicitly, not wildcarded

Read the full file on GitHub · 90 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. 8d ago First seen · 90 lines · 113 tokens per session scan A 8061cf313d6c

Subscribe to this mod's changes

security-review is a skill published in the GitHub repository lantisprime/claude-sdlc (3 stars, last pushed 4mo ago), licensed MIT. It adds 113 tokens to every session and 873 once invoked, about $0.0006 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-08-31.

Related

Other skills, from other repositories

code-reviewer

Default code-quality route for broad code review, PR review, maintainability, correctness, and regression-risk checks. Do not use as the primary route for dedicated OWASP/security audits, review-feedback handling, completion verification, AI-code cleanup, or TDD/test-first work.

foryourhealth111-pixel/Vibe-Skills · 58 tokens

great_cto

Use when the CTO describes a feature, task, or project goal. Orchestrates the full SDLC pipeline automatically based on project type.

avelikiy/great_cto · 32 tokens

skeptical-triage

Reusable 3-round self-challenge + arbiter pattern for filtering false positives from findings/verdicts. Use when the cost of a false-positive gate block exceeds the cost of 4 extra LLM turns.

avelikiy/great_cto · 49 tokens

vertical-real-estate

Residential-proptech domain knowledge so architect / pm aren't naive when speccing real-estate products (listings, lead-crm, transaction-coordination, property-mgmt). Codifies MLS/IDX reality, listing status lifecycle + syndication canonical-source, long-cycle lead nurture, transaction-coordination as the high-pain…

avelikiy/great_cto · 99 tokens

well-architected

6-pillar architecture review framework. Adapted from AWS Well-Architected for use by greatcto's architect agent on every non-nano ARCH document. Forces explicit answers across operational excellence, security, reliability, performance, cost, and sustainability — not just feature design.

avelikiy/great_cto · 60 tokens

product-economics

Does this product make money at a price someone will pay? Forces contribution margin, a price with a stated basis, and a bottom-up market size — each number labelled measured / assumed / unknown, so a guess can never be read as a calculation.

avelikiy/great_cto · 55 tokens