security-reviewer

security-reviewer is an agent for Claude Code from synaptiai/synapti-marketplace. It costs 45 tokens per session (1,212 once invoked), scanned A, original, Apache-2.0.

A security-focused code-review agent that looks for common vulnerabilities, exposed secrets, authentication and authorization problems, unsafe input handling, and risky dependencies.

In plain words
What is it for?
Use it to review code changes for security issues, including OWASP-style weaknesses, secret leaks, access-control errors, and dependency vulnerabilities.
Why use it?
It provides a dedicated security pass that can reveal risks ordinary code review may overlook.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the flow plugin — 32 skills, 21 commands, 9 agents shipped together

Good fit Use it to review code changes for security issues, including OWASP-style weaknesses, secret leaks, access-control errors, and dependency vulnerabilities.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/synaptiai/synapti-marketplace/security-reviewer
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.

Clone the repo
git clone --depth 1 https://github.com/synaptiai/synapti-marketplace

Made for: Claude Code.

Or install flow, the plugin that ships this one along with the rest of its 32 skills, 21 commands, 9 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/synaptiai/synapti-marketplace/security-reviewer/github.svg)](https://agentmods.dev/agents/synaptiai/synapti-marketplace/security-reviewer)
Your own site
<a href="https://agentmods.dev/agents/synaptiai/synapti-marketplace/security-reviewer"><img src="https://agentmods.dev/badge/agents/synaptiai/synapti-marketplace/security-reviewer/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-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/synaptiai/synapti-marketplace/security-reviewer"><img src="https://agentmods.dev/badge/agents/synaptiai/synapti-marketplace/security-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,212 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.00045 $0.01212
Opus 5 $0.00023 $0.00606
Sonnet 5 $0.00009 $0.00242
Haiku 4.5 $0.00005 $0.00121

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

Security

Grade A, and why

security-reviewer 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 7d 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.

plugins/flow/agents/security-reviewer.md · 120 lines

How it starts

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

Security Reviewer Agent

You are a security review specialist for the flow plugin. Focus exclusively on security concerns in code changes. When a true security decision arises (e.g., risk acceptance, security vs. usability trade-offs — NOT finding triage), use the six-field Proactive Autonomy escalation structure (Situation / What I tried / Options / My recommendation / Blocking? / Risk if wrong) rather than open-ended questions or silent deferrals. Finding triage (P1/P2/P3 disposition) is NEVER a valid escalation trigger; fix in-PR per skills/llm-operator-principles/SKILL.md.

Process

Step 1: Get Changed Files

DEFAULT_BRANCH=$(gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name' 2>/dev/null || echo "main")
git diff --name-only "origin/$DEFAULT_BRANCH"..HEAD

Step 2: Scan for Secrets

# Hardcoded secrets patterns
git diff "origin/$DEFAULT_BRANCH"..HEAD | grep -inE '(password|secret|api_key|token|private_key|credentials)\s*[=:]' 2>/dev/null

# High-entropy strings (potential API keys)
git diff "origin/$DEFAULT_BRANCH"..HEAD | grep -oE '[A-Za-z0-9+/=]{32,}' 2>/dev/null | head -5

# .env files in diff
git diff --name-only "origin/$DEFAULT_BRANCH"..HEAD | grep -iE '\.env'

Step 3: OWASP Top 10 Analysis

Read each changed file and check for:

Injection (A03):

  • SQL: string interpolation in queries, missing parameterized queries
  • Command: user input in shell commands, exec, system, eval
  • Code: dynamic evaluation of user input

Broken Authentication (A07):

  • Weak password policies
  • Missing rate limiting on auth endpoints
  • Session management issues

XSS (A03):

  • Unsanitized user input rendered in HTML/templates
  • Missing Content-Security-Policy headers
  • InnerHTML or dangerouslySetInnerHTML with user data

Broken Access Control (A01):

  • Missing authorization checks on endpoints
  • IDOR (direct object references without ownership check)
  • Privilege escalation paths

Security Misconfiguration (A05):

  • Debug mode enabled
  • Default credentials
  • Overly permissive CORS

Read the full file on GitHub · 120 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. 7d ago First seen · 120 lines · 45 tokens per session scan A 9dac69dd1c86

Subscribe to this mod's changes

security-reviewer is an agent published in the GitHub repository synaptiai/synapti-marketplace (6 stars, last pushed today), licensed Apache-2.0. It adds 45 tokens to every session and 1,212 once invoked, about $0.0002 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.

Related

Other agents, from other repositories

web-search-researcher

Do you find yourself desiring information that you don't quite feel well-trained (confident) on? Information that is modern and potentially only discoverable on the web? Use the web-search-researcher subagenttype today to find any and all answers to your questions! It will research deeply to figure out and attempt to…

CaptainMe-AI/lead-dev-os · 114 tokens

codebase-analyzer

Analyzes codebase implementation details. Call the codebase-analyzer agent when you need to find detailed information about specific components. As always, the more detailed your request prompt, the better! :).

CaptainMe-AI/lead-dev-os · 44 tokens

codebase-locator

Locates files, directories, and components relevant to a feature or task. Call codebase-locator with human language prompt describing what you're looking for. Basically a "Super Grep/Glob/LS tool" — Use it if you find yourself desiring to use one of these tools more than once.

CaptainMe-AI/lead-dev-os · 68 tokens

designer

The Designer of the aSPARK team. Use in the Specify phase (/look-and-feel) to design-check a spec before planning starts, or later to critique an implemented UI (from screenshots or markup provided by the caller). Detects bad design: usability heuristics violations, inconsistency, accessibility problems.

a-lottes/aSPARK · 64 tokens

seo-manager

SEO specialist. Invoke for SEO strategy, keyword research, technical SEO audits, content strategy, Core Web Vitals analysis, structured data implementation, and diagnosing ranking drops. All three SEO pillars: technical, content, and authority.

pranav8494/team-of-agents · 48 tokens

project-manager

Project delivery specialist. Invoke for sprint planning, delivery milestones, dependency mapping, RAID logs, status reports, retrospectives, and cross-functional execution coordination. Distinct from product-manager, use this for delivery and execution, not product discovery.

pranav8494/team-of-agents · 50 tokens