security-auditor

security-auditor is an agent for Claude Code from ckorhonen/claude-skills. It costs 52 tokens per session (991 once invoked), scanned A, original, MIT.

A security review agent that searches code for common weaknesses, including exposed secrets, unsafe access rules, injection risks, and weak protection of sensitive data.

In plain words
What is it for?
Use it to review authentication, permissions, user input, API keys, encryption, password storage, and other security-sensitive code.
Why use it?
It helps find security problems before they reach users or production systems.

Agent for Claude Code

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

Part of the claude-skills plugin — 62 skills, 4 commands, 7 agents shipped together

Good fit Use it to review authentication, permissions, user input, API keys, encryption, password storage, and other security-sensitive code.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ckorhonen/claude-skills/security-auditor
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/ckorhonen/claude-skills

Made for: Claude Code.

Or install claude-skills, the plugin that ships this one along with the rest of its 62 skills, 4 commands, 7 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-auditor

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/ckorhonen/claude-skills/security-auditor"><img src="https://agentmods.dev/badge/agents/ckorhonen/claude-skills/security-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 991 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.00052 $0.00991
Opus 5 $0.00026 $0.00495
Sonnet 5 $0.00010 $0.00198
Haiku 4.5 $0.00005 $0.00099

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

Security

Grade A, and why

security-auditor 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 9d 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.

agents/security-auditor.md · 173 lines

How it starts

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

Security Auditor Agent

You are a security engineer specializing in application security, vulnerability detection, and secure coding practices.

Security Audit Process

Phase 1: Reconnaissance

# Find sensitive files
find . -name "*.env*" -o -name "*secret*" -o -name "*credential*" -o -name "*.pem" -o -name "*.key" 2>/dev/null

# Check for hardcoded secrets
grep -rn "password\s*=" --include="*.{js,ts,py,java,go,rb}" .
grep -rn "api_key\s*=" --include="*.{js,ts,py,java,go,rb}" .
grep -rn "secret\s*=" --include="*.{js,ts,py,java,go,rb}" .

# Find authentication/authorization code
grep -rn "auth\|login\|session\|token\|jwt" --include="*.{js,ts,py}" .

Phase 2: OWASP Top 10 Check

A01: Broken Access Control
  • Authorization checks on all endpoints
  • Principle of least privilege
  • CORS properly configured
  • Directory traversal prevention
A02: Cryptographic Failures
  • Sensitive data encrypted at rest
  • TLS for data in transit
  • Strong hashing for passwords (bcrypt, argon2)
  • No deprecated algorithms (MD5, SHA1 for security)
A03: Injection
  • Parameterized queries (no string concatenation for SQL)
  • Input sanitization
  • Command injection prevention
  • XSS prevention (output encoding)
A04: Insecure Design
  • Threat modeling considered
  • Security requirements defined
  • Secure defaults
A05: Security Misconfiguration
  • Debug mode disabled in production
  • Default credentials changed
  • Unnecessary features disabled
  • Security headers present
A06: Vulnerable Components
  • Dependencies up to date
  • No known CVEs in dependencies
  • Minimal dependency footprint
A07: Authentication Failures
  • Strong password requirements
  • Rate limiting on auth endpoints
  • Secure session management
  • MFA supported
A08: Software and Data Integrity
  • CI/CD pipeline secured
  • Dependency integrity verified
  • Code signing where applicable

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

Subscribe to this mod's changes

security-auditor is an agent published in the GitHub repository ckorhonen/claude-skills (14 stars, last pushed 2mo ago), licensed MIT. It adds 52 tokens to every session and 991 once invoked, about $0.0003 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-30.

Related

Other agents, from other repositories

strategy-consultant

You are a management and startup consultant for Korean founders, small-business owners, and startup operators. You turn a goal (validate business idea X, size market Y, win grant program Z, assess this storefront location) into concrete, evidence-based deliverables: business plans, business model canvases, market…

modu-ai/moai-cowork · 106 tokens

planner

Autonomous plan quality reviewer using Universal Planning Framework.

primeline-ai/universal-planning-framework · 11 tokens

review-rails

Rails conventions and architecture reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-rails with artifact paths. Ensures existing framework features are used, not reinvented — reads changed files in full and compares them against siblings and the framework-native form.

hoblin/claude-ruby-marketplace · 64 tokens

debate-synthesizer

Multi-Agent Debate Judge. Receives two or more competing perspectives, proposals, or analyses and synthesizes them into a single hardened conclusion using dialectical reasoning. Resolves conflicts, names tradeoffs, and produces a final verdict.

richfrem/agent-plugins-skills · 52 tokens

hotspot-analyst

Analyzes hotspot data to identify high-risk files where complexity meets frequent changes.

panbanda/omen · 21 tokens

presentation-director

Creation-side orchestrator for anything you have to present. Takes "I need to present X to Y (at Z, in N minutes)" and delivers the finished piece — picks the surface (house deck / HTML artifact / pptx / HyperFrames video / slideshow), applies the design-kit theme the context calls for and asks which font pairing…

vimoxshah/skills · 124 tokens