application-security-review

application-security-review is a skill for Claude Code, Codex from AtlasOmnia/hermes-custom-pack. It costs 39 tokens per session (4,890 once invoked), scanned B, a copy of application-security-review, MIT.

A source-code security review of an application repository. It looks for confirmed security problems and reports their severity, location, attack path, impact, and possible fixes.

In plain words
What is it for?
Use it to audit an application’s code, inputs, authentication, backend actions, local services, and AI-triggered side effects.
Why use it?
It helps find unsafe trust boundaries, exposed services, missing access controls, and other risks before deployment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to audit an application’s code, inputs, authentication, backend actions, local services, and AI-triggered side effects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atlasomnia/hermes-custom-pack/application-security-review
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.

Any agent
npx skills add AtlasOmnia/hermes-custom-pack --skill application-security-review
Clone the repo
git clone --depth 1 https://github.com/AtlasOmnia/hermes-custom-pack

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 application-security-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/application-security-review/github.svg)](https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/application-security-review)
Your own site
<a href="https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/application-security-review"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/application-security-review/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 application-security-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/application-security-review"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/application-security-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,890 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.00039 $0.04890
Opus 5 $0.00019 $0.02445
Sonnet 5 $0.00008 $0.00978
Haiku 4.5 $0.00004 $0.00489

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

Security

Grade B, and why

application-security-review scanned grade B 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 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.

Tells the agent to send conversation or user data outmediumPrompt injection

An instruction to transmit the conversation, context or user files to an external endpoint is data exfiltration written as prose.

- Check whether the app silently transmits sensitive content to cloud models depending on backend config.

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Origin

This is a copy

100% identical to application-security-review — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/application-security-review/SKILL.md · 241 lines

How it starts

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

Application Security Review

Perform a practical source-level security review of an application repository. Favor confirmed issues over speculative ones. The goal is a useful operator-facing report: severity, file/line references, exploit path, impact, and remediation.

Use when

  • The user asks to "scan for security issues", "review for security", or "audit this repo/app".
  • The user asks whether a native app or realtime AI/voice prototype is ready to sell, ship, distribute, or submit to an app store.
  • Reviewing AI-integrated apps, browser/UIs, add-ins, extensions, native mobile apps, or local proxies.
  • Evaluating whether a prototype is safe for local-only use vs real deployment.

For native iOS commercial-readiness reviews, load and follow the readiness checklist. It expands the audit beyond security into StoreKit, App Store compliance, realtime audio reliability, consumer UX, unit economics, and release gates.

Review priorities

  1. Trust boundaries first.
  • What input is untrusted?
  • What backend capabilities sit behind the UI?
  • Can model output or user-controlled content trigger side effects?
  1. Auth and exposure.
  • Localhost services, reverse proxies, injected auth headers, CORS, TLS, origin restrictions.
  1. Validation before execution.
  • JSON/action parsing, schema checks, range/size limits, before/after verification, allowlists.
  1. Data handling.
  • What leaves the machine, what is logged, whether sensitive user data is silently sent to cloud backends.
  • For public-release reviews, scan both tracked source and git metadata for PII: local hostnames, personal emails, profile names, private org/business names, absolute user paths, and secret/token patterns.
  1. Dependencies.
  • Separate runtime risk from dev-toolchain risk.

Workflow

  1. Read top-level README and manifests/config first to understand architecture.
  2. Locate network entry points and auth flow.
  3. Trace untrusted input to powerful sinks:
  • LLM prompts
  • filesystem/terminal/network tools
  • code execution
  • document/workbook mutations
  1. Search for:
  • fetch/XHR/API calls
  • proxies and bearer-token injection
  • JSON.parse on model output
  • eval/Function/innerHTML/dangerous DOM sinks
  • wildcard CORS or broad allowlists
  • dependency versions with known advisories
  1. For public-release/privacy scans, include repository metadata and the actual remote publication surface as well as source:
  • Before first push, inspect staged/tracked files, local author metadata, and reachable history to catch accidental local-hostname identities and workstation paths.
  • Scan tracked/source files for emails, hostnames, <user-home>/..., C:\\Users\\<name>, private profile names, internal org names, token prefixes, and generated run artifacts.
  • After push or history rewrite, make the publication verdict from a fresh remote clone/mirror, every public branch/tag and PR ref, PR text, commit metadata, and all reachable blobs. Do not count ignored files, virtual environments, local reflogs, or stale remote-tracking refs as currently published content.
  • Use an independent-model review when practical, then verify findings yourself; classifiers often mislabel loopback, placeholder paths, or code symbols as PII.
  • Confirm the update reaches the intended default/publication branch rather than remaining only on a feature branch.
  • Distinguish generic loopback (127.0.0.1), contextual test IPs, GitHub noreply identities, placeholder fixtures, and code symbols ending in .local from real PII or private-machine identifiers.

Read the full file on GitHub · 241 lines

Files

What ships with it

3 files 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. 9d ago First seen · 241 lines · 39 tokens per session scan B 0548b9f69136

Subscribe to this mod's changes

application-security-review is a skill published in the GitHub repository AtlasOmnia/hermes-custom-pack (56 stars, last pushed 24d ago), licensed MIT. It adds 39 tokens to every session and 4,890 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (tells the agent to send conversation or user data out). It is 100% identical to application-security-review, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

dx-roaster

Brutally honest developer-experience audit for a GitHub repo. Scores 10 DX dimensions (time-to-first-success, README clarity, visual proof, install, quick-start, docs, examples, community, trust, marketing), writes a shareable roast in the requested tone (brutal/honest/kind), produces a prioritized action plan ranked…

Varnan-Tech/opendirectory · 130 tokens

specification-compliance-review

Use this skill when an implementation is described as partial, passing, or complete and the task is to determine whether it actually satisfies an explicit specification. This is not a generic code review and not a re-run of the test suite. The central question is: does every normative requirement have both a correct…

AtlasOmnia/donna-starter · 35 tokens

gh-issues

Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5]…

SafeAI-Lab-X/ClawKeeper · 116 tokens

skill-creator

Create, edit, improve, or audit AgentSkills. Use when creating a new skill from scratch or when asked to improve, review, audit, tidy up, or clean up an existing skill or SKILL.md file. Also use when editing or restructuring a skill directory (moving files to references/ or scripts/, removing stale content, validating…

SafeAI-Lab-X/ClawKeeper · 121 tokens

openclaw-pr-maintainer

Maintainer workflow for reviewing, triaging, preparing, closing, or landing OpenClaw pull requests and related issues. Use when Codex needs to validate bug-fix claims, search for related issues or PRs, apply or recommend close/reason labels, prepare GitHub comments safely, check review-thread follow-up, or perform…

SafeAI-Lab-X/ClawKeeper · 84 tokens

github

GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available)…

SafeAI-Lab-X/ClawKeeper · 101 tokens