security-review

security-review is a skill for Claude Code, Codex from nearform/lastlight. It costs 59 tokens per session (2,708 once invoked), scanned B, original, MIT.

A security review process that examines recent repository changes for development and delivery risks that common GitHub scanners may not cover. It creates one dated summary issue for each run.

In plain words
What is it for?
It checks changes to CI workflows, authentication, secret handling, and software dependencies, while respecting accepted risks recorded in SECURITY.md.
Why use it?
It focuses review on risks people introduced in changed code and configuration, without duplicating dependency, code, or secret scanners.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It checks changes to CI workflows, authentication, secret handling, and software dependencies, while respecting accepted risks recorded in SECURITY.md.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/nearform/lastlight/security-review.svg)](https://agentmods.dev/skills/nearform/lastlight/security-review)
Your own site
<a href="https://agentmods.dev/skills/nearform/lastlight/security-review"><img src="https://agentmods.dev/badge/skills/nearform/lastlight/security-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,708 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 3 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.00059 $0.02708
Opus 5 $0.00030 $0.01354
Sonnet 5 $0.00012 $0.00542
Haiku 4.5 $0.00006 $0.00271

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

Security

Grade B, and why

security-review scanned grade B with 3 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.

Downloads and executes remote codemediumSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

here; new `RUN curl … | sh` / `wget … | bash`; new `--privileged`/`--cap-add`,

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

here; new `RUN curl … | sh` / `wget … | bash`; new `--privileged`/`--cap-add`,

Runs shell commandslowCapability

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

- **Shell exec on attacker-influenced args**: new `execSync`/`exec`/`spawn` where
apps/server/skills/security-review/SKILL.md · 208 lines

How it starts

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

Security Review

Review what changed in the repo since the last scan with a security lens, focused on SDLC concerns that GitHub's built-in scanners (Dependabot, Code Scanning, Secret Scanning) and Renovate don't cover. File one summary issue per run, dated, containing a GitHub task list of any findings. Honour SECURITY.md to suppress accepted risks and false positives.

This is not a general vulnerability scanner. It does not run npm audit (Dependabot does). It does not run semgrep --config auto over the whole tree (Code Scanning does). It looks at the diff since the prior scan and surfaces what humans introduced — CI hardening, auth changes, secret handling in new code, supply-chain churn.

The summary issue's structure is the machine-parsed contract a maintainer's later comment is processed against (the security-feedback skill). It is defined in references/issue-format.md — follow it exactly when composing the issue (§9).

Context

  • context.repoowner/name to scan
  • context.issueDir — directory for the run summary file (e.g. .lastlight/security-<date>)

Procedure

1. Clone, find the prior-scan anchor, read SECURITY.md

  1. Clone the target repo via github_clone_repo.
  2. Prior scan anchor. Query issues labelled security-scan (open OR closed), newest first. Read the latest one's body for the <!-- lastlight-security-scan-ts: ... --> comment and use that ISO-8601 timestamp as priorScanTs. No prior scan issue → priorScanTs = now - 30 days (bootstrap floor — keeps the first run finite).
  3. Read SECURITY.md at the repo root (if present): per-tool severity floors (default medium; skip low/info), the accepted-risks table, and the false-positives table (both keyed by finding fingerprint).

1.5. Compute the changeset

Most weeks the diff is dominated by Renovate/Dependabot churn — strip it so the scope is what humans wrote.

  1. git log --since="${priorScanTs}" --pretty=format:'%H|%an|%ae|%s'.
  2. Drop a commit when either: author email matches *[bot]@users.noreply.github.com and name is dependabot[bot] / renovate[bot] / github-actions[bot]; OR the subject starts with chore(deps), chore(deps-dev), build(deps), build(deps-dev), fix(deps).
  3. Accumulate changed files from the surviving commits (git diff-tree --no-commit-id --name-only -r ${sha}) into a deduped changedFiles set.
  4. Drop entries that are only lockfiles (package-lock.json, pnpm-lock.yaml, yarn.lock, bun.lockb, Gemfile.lock, poetry.lock, uv.lock, Cargo.lock, composer.lock) — catches lockfile changes mixed into human commits.
  5. Build commitsReviewed = surviving commits as { shortSha, subject } (used in the scope note).

Read the full file on GitHub · 208 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 208 lines · 59 tokens per session scan B b90c91090e20

Subscribe to this mod's changes

security-review is a skill published in the GitHub repository nearform/lastlight (22 stars, last pushed 3d ago), licensed MIT. It adds 59 tokens to every session and 2,708 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 3 findings (downloads and executes remote code, makes network calls, runs shell commands). 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

Codex

Guides operator-owned delegation to Codex when the task fits a bounded coding lane, review pass, or worktree-isolated implementation track.

agentic-in/elephant-agent · 31 tokens

example-skill

Counts lines, words, and bytes in a text file using the bundled count.sh script. Use when asked to count/measure a file's size in these terms.

sammwyy/clay · 37 tokens

design-taste-frontend

Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.

Leonxlnx/taste-skill · 61 tokens

open-code-review

Performs AI-powered code review on Git changes using the ocr CLI from alibaba/open-code-review. Use when the user asks to review code, review a pull request, review staged/unstaged changes, review a commit, or compare branches for code quality issues. Produces line-level review comments and can automatically apply…

alibaba/open-code-review · 98 tokens

image-to-code

Elite website image-to-code skill for Codex. For visually important web tasks, it must first generate the design image(s) itself, deeply analyze them, then implement the website to match them as closely as possible. In Codex, it must prefer large, readable, section-specific images instead of tiny compressed boards…

Leonxlnx/taste-skill · 116 tokens

brandkit

Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional…

Leonxlnx/taste-skill · 89 tokens