ios-security-reviewer

ios-security-reviewer is an agent for Claude Code from OkminLee/everything-claude-code-ios. It costs 56 tokens per session (4,499 once invoked), scanned A, original, MIT.

An iOS security review assistant that checks apps for common vulnerabilities, exposed secrets, unsafe data storage, authentication problems, network weaknesses, and App Store security requirements.

In plain words
What is it for?
Use it to inspect Swift code, Keychain and file protection, biometrics, access controls, App Transport Security settings, certificate pinning, privacy manifests, and third-party packages.
Why use it?
It helps find security issues before an app reaches users or Apple review. It also draws attention to risks such as hardcoded API keys, weak access controls, and vulnerable dependencies.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; positional $N argument.

Part of the everything-claude-code-ios plugin — 5 skills, 10 commands, 12 agents, 5 hooks, 4 MCP servers shipped together

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 agents/okminlee/everything-claude-code-ios/ios-security-reviewer
Clone the repo
git clone --depth 1 https://github.com/OkminLee/everything-claude-code-ios

Made for: Claude Code.

Or install everything-claude-code-ios, the plugin that ships this one along with the rest of its 5 skills, 10 commands, 12 agents, 5 hooks, 4 MCP servers.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/okminlee/everything-claude-code-ios/ios-security-reviewer.svg)](https://agentmods.dev/agents/okminlee/everything-claude-code-ios/ios-security-reviewer)
Your own site
<a href="https://agentmods.dev/agents/okminlee/everything-claude-code-ios/ios-security-reviewer"><img src="https://agentmods.dev/badge/agents/okminlee/everything-claude-code-ios/ios-security-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,499 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.1 $0.00056 $0.04499
Opus 5 $0.00028 $0.02250
Sonnet 5 $0.00011 $0.00900
Haiku 4.5 $0.00006 $0.00450

Measured 6d ago against content hash 5f5c5d508c96, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ios-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 6d 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/ios-security-reviewer.md · 648 lines

How it starts

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

iOS Security Reviewer

You are an expert iOS security specialist focused on identifying and remediating vulnerabilities in iOS applications. Your mission is to prevent security issues before they reach production and App Store review.

Core Responsibilities

  1. Vulnerability Detection - Identify OWASP Mobile Top 10 issues
  2. Secrets Detection - Find hardcoded API keys, passwords, tokens
  3. Data Protection - Ensure proper Keychain and file protection usage
  4. Authentication/Authorization - Verify biometrics and access controls
  5. Network Security - Check ATS configuration and certificate pinning
  6. App Store Compliance - Verify privacy manifest and security requirements

Security Analysis Tools

iOS Security Tools

  • SwiftLint: Custom security-focused rules
  • Xcode Static Analyzer: Built-in static analysis (Product > Analyze)
  • OWASP Dependency-Check: Vulnerable SPM/CocoaPods packages
  • MobSF: Mobile Security Framework for comprehensive analysis
  • objection/Frida: Runtime security testing

Analysis Commands

# Check for hardcoded secrets in Swift files
grep -rn "api[_-]?key\|password\|secret\|token" --include="*.swift" .

# Find ATS exceptions
grep -rn "NSAllowsArbitraryLoads\|NSExceptionDomains" --include="*.plist" .

# Check for sensitive logging
grep -rn "print(\|NSLog(\|os_log(" --include="*.swift" . | grep -i "token\|password\|key\|secret"

# Find UserDefaults usage for sensitive data
grep -rn "UserDefaults" --include="*.swift" .

# Check entitlements
codesign -d --entitlements - MyApp.app 2>&1

# Analyze binary for debug symbols (should be minimal in release)
nm -u MyApp.app/MyApp | wc -l

# Check for insecure URL schemes
grep -rn "CFBundleURLSchemes" --include="*.plist" .

OWASP Mobile Top 10 (2024) Checklist

M1: Improper Credential Usage (CRITICAL)

// ❌ CRITICAL: Hardcoded credentials
let apiKey = "sk-proj-xxxxx"
let password = "admin123"

// ❌ CRITICAL: Credentials in UserDefaults
UserDefaults.standard.set(token, forKey: "authToken")

// ✅ CORRECT: Use Keychain with proper accessibility
try KeychainService.save(
    token,
    forKey: "authToken",
    accessibility: .whenUnlockedThisDeviceOnly
)

Read the full file on GitHub · 648 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. 6d ago First seen · 648 lines · 56 tokens per session scan A 5f5c5d508c96

Subscribe to this mod's changes

ios-security-reviewer is an agent published in the GitHub repository OkminLee/everything-claude-code-ios (58 stars, last pushed 5mo ago), licensed MIT. It adds 56 tokens to every session and 4,499 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

ux-flow-auditor

Use this agent when the user mentions UX flow issues, dead-end views, dismiss traps, missing empty states, broken user journeys, or wants a UX audit of their iOS app. Automatically scans SwiftUI and UIKit code for user journey defects - detects dead ends, dismiss traps, buried CTAs, missing loading/error/empty states…

CharlesWiltgen/Axiom · 190 tokens

e2e-verifier

FlutterアプリのE2E動作検証エージェント。MCP(dart-mcp + Marionette)を使い、シミュレーター上でUI操作・検証を行う。mobile-automationスキルから呼び出される。.

K9i-0/ccpocket · 65 tokens

gem-mobile-tester

Mobile E2E testing: Detox, Maestro, iOS/Android simulators.

mubaidr/gem-team · 22 tokens

android-performance-specialist

Specialist in Android app performance & diagnostics — app startup (cold/warm/hot, TTID/TTFD, App Startup lib), Baseline Profiles & Macrobenchmark, rendering/jank (frame budgets, slow/frozen frames, JankStats), ANRs (ApplicationExitInfo), memory (LeakCanary, LMK, onTrimMemory), Perfetto/Studio Profiler, Play Vitals…

SteveGJones/ai-first-sdlc-practices · 128 tokens

swiftui-architect

Specialist in modern iOS app architecture with SwiftUI (iOS 26 / Swift 6.2) — the Observation framework (@Observable), MV vs MVVM vs TCA, NavigationStack & deep linking, SwiftData persistence, structured concurrency at the UI boundary, dependency injection & SwiftPM modularization, UIKit interop, and Swift Testing.…

SteveGJones/ai-first-sdlc-practices · 97 tokens

copilot

cd your-android-project git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git .github/skills/compose-kotlin-agent-skills.

haidrrrry/compose-kotlin-agent-skills · 0 tokens