security-feedback

security-feedback is a skill for Claude Code, Codex from nearform/lastlight. It costs 36 tokens per session (2,176 once invoked), scanned A, original, MIT.

A process for handling a maintainer's response to a security-scan summary issue. It turns selected findings into separate tasks or records accepted risks and false positives in SECURITY.md.

In plain words
What is it for?
It fetches the parent issue, checks its required format, and processes the maintainer's comment into actionable issues or security-suppression records.
Why use it?
It converts a grouped scan report into clear follow-up work while preserving documented decisions not to act on certain findings.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/nearform/lastlight/security-feedback
Any agent
npx skills add nearform/lastlight --skill security-feedback
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-feedback

README.md
[![agentmods](https://agentmods.dev/badge/skills/nearform/lastlight/security-feedback.svg)](https://agentmods.dev/skills/nearform/lastlight/security-feedback)
Your own site
<a href="https://agentmods.dev/skills/nearform/lastlight/security-feedback"><img src="https://agentmods.dev/badge/skills/nearform/lastlight/security-feedback.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,176 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00036 $0.02176
Opus 5 $0.00018 $0.01088
Sonnet 5 $0.00007 $0.00435
Haiku 4.5 $0.00004 $0.00218

Measured 4d ago against content hash 739e5bb6d514, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

security-feedback 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 4d 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.

Makes network callslowCapability

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

GitHub operations via `github_*` MCP tools only — never `gh` CLI, `curl`, or raw HTTP.
apps/server/skills/security-feedback/SKILL.md · 181 lines

How it starts

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

Security Feedback

A maintainer commented on a security-labelled issue — almost always a per-run security scan summary (one issue per scan, a task-list of findings). Based on the comment, either:

  • Break selected findings into individual issues (each can later feed build). Primary flow.
  • Record a suppression in SECURITY.md (accepted risk / false positive).
  • Reply for discussion, or ignore noise.

The parent issue's grammar is the contract defined in skills/security-review/references/issue-format.md. This skill is staged into its own workspace and cannot read that file, so it carries its own copy of the row/severity regex below — if you change the grammar, update both in lockstep.

Context

  • context.repoowner/name
  • context.issueNumber — the security summary issue (parent)
  • context.commentBody — the triggering comment
  • context.sender — the commenter's GitHub login

The parent body is not passed — fetch it at step 1.

1. Fetch and parse the parent issue

github_get_issue({ owner, repo, issue_number: issueNumber }).

Version check. The body MUST start with <!-- lastlight-security-scan-version: 1 -->. If the marker is missing or the version isn't 1, reply: "Unknown scan-summary format — this skill is at version 1 but the parent reports a different version. Ask the maintainer to re-run @last-light security-review." Do not parse further.

Parse each finding row with this canonical regex (all three states):

/^- \[([ x])\] <!-- item:(\d+) fp:([0-9a-f]{8,}) --> (?:~~)?\*\*(.+?)\*\* — `([^`]+):(\d+)` \(([a-z][a-z0-9-]*) · `([^`]+)`\)(?:~~ → #(\d+))?$/m

Captures: checkbox ( /x), item, fp, title, file, line, tool, rule, and subIssueNumber (only when already broken out). Derive per row:

Derived Definition
alreadyBrokenOut subIssueNumber != null — turned into a sub-issue on a prior run
userTicked checkbox === "x" && !alreadyBrokenOut — the maintainer ticked the box, selecting it

Read the full file on GitHub · 181 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. 4d ago First seen · 181 lines · 36 tokens per session scan A 739e5bb6d514

Subscribe to this mod's changes

security-feedback is a skill published in the GitHub repository nearform/lastlight (22 stars, last pushed 7d ago), licensed MIT. It adds 36 tokens to every session and 2,176 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

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

minimalist-ui

Clean editorial-style interfaces. Warm monochrome palette, typographic contrast, flat bento grids, muted pastels. No gradients, no heavy shadows.

Leonxlnx/taste-skill · 34 tokens