verify-security

verify-security is a skill for Claude Code, Codex from Aurite-ai/agent-verifier. It costs 42 tokens per session (1,946 once invoked), scanned A, original, MIT.

A local code-security checking skill for finding hardcoded secrets, unsafe input handling, exposed errors, and vulnerable dependencies. It examines files on the developer's machine.

In plain words
What is it for?
Use it to check configuration, environment, dependency, and source files when asked to verify security, find secrets, or scan for vulnerabilities.
Why use it?
It catches common security problems early and keeps the code under review from leaving the local environment during analysis.

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/aurite-ai/agent-verifier/verify-security
Any agent
npx skills add Aurite-ai/agent-verifier --skill verify-security
Clone the repo
git clone --depth 1 https://github.com/Aurite-ai/agent-verifier

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 verify-security

README.md
[![agentmods](https://agentmods.dev/badge/skills/aurite-ai/agent-verifier/verify-security.svg)](https://agentmods.dev/skills/aurite-ai/agent-verifier/verify-security)
Your own site
<a href="https://agentmods.dev/skills/aurite-ai/agent-verifier/verify-security"><img src="https://agentmods.dev/badge/skills/aurite-ai/agent-verifier/verify-security.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,946 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.00042 $0.01946
Opus 5 $0.00021 $0.00973
Sonnet 5 $0.00008 $0.00389
Haiku 4.5 $0.00004 $0.00195

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

Security

Grade A, and why

verify-security 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.

requests.get(url, verify=False)
skills/verify-security/SKILL.md · 307 lines

How it starts

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

Security Verification

Purpose

Verify code for security anti-patterns and vulnerabilities. All analysis happens locally—code never leaves your machine.

When to Use

Trigger this skill when the user asks to:

  • "verify agent security"
  • "verify security"
  • "check for secrets"
  • "scan for vulnerabilities"
  • "security audit"

Note: For full verification including patterns, quality, and language-specific checks, tell the user to say "verify agent".

Process

Step 1: Discover Files

Locate files to analyze:

Configuration files:

  • package.json, pyproject.toml, Cargo.toml - Dependencies
  • .env, .env.example, .env.local - Environment files
  • config.py, settings.py, config.ts - Configuration

Source files:

  • *.py, *.ts, *.js, *.go, *.rs - Source code
  • Prioritize files with: auth, api, client, secret, config in name

Exclude:

  • node_modules/, .venv/, venv/, __pycache__/
  • *.test.*, *.spec.*, *_test.go

Step 2: Run Security Checks

Check Tiers
  • [PATTERN] — Mechanical check. Apply exactly as written.
  • [HEURISTIC] — Judgment required. Mark findings clearly.

Tag every finding with [P] for pattern or [H] for heuristic.


2.1 [PATTERN] Hardcoded Secrets

Scan for assignments matching these patterns (case-insensitive):

Variable pattern Fail condition
API_KEY Assigned to string literal
SECRET Assigned to string literal
PASSWORD Assigned to string literal
TOKEN Assigned to string literal
PRIVATE_KEY Assigned to string literal
AWS_ACCESS_KEY_ID Assigned to string literal
AWS_SECRET_ACCESS_KEY Assigned to string literal

Examples of failures:

# ❌ Issue
API_KEY = "sk-abc123..."
password = "hunter2"
OPENAI_API_KEY = "sk-proj-..."

# ✅ Pass
API_KEY = os.environ["API_KEY"]
password = os.getenv("PASSWORD")
api_key = settings.API_KEY

Also flag:

  • String literals matching known API key patterns:
    • sk-... (OpenAI)
    • sk-ant-... (Anthropic)
    • AKIA... (AWS)
    • ghp_... (GitHub)
    • xoxb-... (Slack)

Read the full file on GitHub · 307 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. 4d ago First seen · 307 lines · 42 tokens per session scan A 06d16ceaeca1

Subscribe to this mod's changes

verify-security is a skill published in the GitHub repository Aurite-ai/agent-verifier (44 stars, last pushed 8d ago), licensed MIT. It adds 42 tokens to every session and 1,946 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

procoder

Work like a senior developer in a repository governed by procoder: run the commit gate before calling anything done, format and lint through the binary, and drive the spec, plan, todo, backlog, and sprint chain in .procoder/. Use this skill when the repository contains a .procoder/ directory or an AGENTS.md naming…

azrtydxb/procoder · 101 tokens

Refactor Planner

Creates a safe, step-by-step plan to refactor messy code without breaking existing behavior.

Notysoty/openagentskills · 22 tokens

observability

This skill should be used when the user asks about "observability", "logging", "metrics", "tracing", "monitoring", "structured logging", "log format", "log levels", "distributed tracing", "OpenTelemetry", "health checks", or needs guidance on implementing observability and monitoring requirements.

zircote-plugins/sdlc-quality · 66 tokens

setup

This skill should be used when the user asks about "project setup", "project initialization", "repository setup", "new project", "bootstrap project", "project structure", "development environment", "toolchain setup", "project configuration", or needs guidance on setting up new projects that comply with SDLC standards.

zircote-plugins/sdlc-quality · 64 tokens

ai

This skill should be used when the user asks about "AI development", "AI coding", "AI assistant", "CLAUDE.md", "AI context", "AI guidelines", "code generation", "AI workflow", "AI review", "AI configuration", or needs guidance on configuring AI assistants and AI-assisted development workflows.

zircote-plugins/sdlc-quality · 67 tokens

ci

This skill should be used when the user asks about "CI pipeline", "continuous integration", "GitHub Actions", "CI configuration", "CI jobs", "workflow", "CI caching", "CI environment", "pipeline structure", or needs guidance on setting up or configuring CI/CD pipelines.

zircote-plugins/sdlc-quality · 60 tokens