AI-Agents-Orchestrator: Skill for Claude Code

.agents/skills/security-review/SKILL.md

security-review is a skill for Claude Code, Codex from hoangsonww/AI-Agents-Orchestrator. It costs 31 tokens per session (275 once invoked), scanned A, original, MIT.

A code-change review focused on security risks, including unsafe input handling, missing access checks, exposed secrets, unsafe paths, subprocess use, and dependency concerns.

In plain words
What is it for?
Use it to review a branch or recent commit for injection flaws, authentication and authorization gaps, hardcoded secrets, path traversal, unsafe subprocesses, and dependency risks.
Why use it?
It helps find vulnerabilities before code is merged or after security-sensitive work. The review also gives each finding a severity, location, explanation, and suggested fix.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is hoangsonww/AI-Agents-Orchestrator's own configuration. It tells Claude Code and Codex how to work on AI-Agents-Orchestrator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything AI-Agents-Orchestrator configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hoangsonww/AI-Agents-Orchestrator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/hoangsonww/AI-Agents-Orchestrator/main/.agents/skills/security-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/AI-Agents-Orchestrator

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hoangsonww/ai-agents-orchestrator/security-review"><img src="https://agentmods.dev/badge/skills/hoangsonww/ai-agents-orchestrator/security-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 275 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00031 $0.00275
Opus 5 $0.00015 $0.00138
Sonnet 5 $0.00006 $0.00055
Haiku 4.5 $0.00003 $0.00028

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

Security

Grade A, and why

security-review 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/scan_secrets.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/skills/security-review/SKILL.md · 36 lines

What it actually says

Diff to review

Review the current branch changes against main:

git diff main...HEAD

If no diff is available, review the most recent commit:

git diff HEAD~1

Audit the changes for:

  1. Injection vulnerabilities — SQL injection, XSS, command injection via unsanitized input
  2. Authentication & authorization gaps — missing auth checks, broken RBAC, token handling issues
  3. Hardcoded secrets — API keys, passwords, tokens in source code
  4. Path traversal — unsanitized file paths that could escape intended directories
  5. Unsafe subprocess calls — raw subprocess without CLICommunicator, shell=True usage
  6. Dependency issues — known vulnerable packages, pinning concerns

Use the checklist in this skill directory

See references/checklist.md for the full security review checklist.

Report format

For each finding:

  • Severity: Critical / High / Medium / Low
  • File: path and line number
  • Issue: what the vulnerability is
  • Fix: concrete remediation steps
Files

What ships with it

2 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. 11d ago First seen · 36 lines · 31 tokens per session scan A 12beb9ec6837

Subscribe to this mod's changes

security-review is a skill published in the GitHub repository hoangsonww/AI-Agents-Orchestrator (84 stars, last pushed 3d ago), licensed MIT. It adds 31 tokens to every session and 275 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-08-30.

Related

Other skills, from other repositories

github-review-pr

Review GitHub pull requests with detailed, multi-perspective code analysis using parallel subagents. Use this skill whenever the user wants to review a PR, asks for code review on a pull request, mentions "review PR", "check this PR", "look at pull request", or references a PR number or GitHub PR URL. Do NOT use for…

feiskyer/claude-code-settings · 90 tokens

github-review-pr

Review GitHub pull requests with evidence-backed, multi-perspective analysis and false-positive filtering. Use when the user asks to review, inspect, or check a GitHub pull request by number or URL. Default to reporting findings locally; publish comments, submit reviews, or approve only when the user explicitly…

feiskyer/codex-settings · 80 tokens

respond-to-pr-comments

Respond to pull request review comments on GitHub or Azure DevOps Services. Reads review threads, validates each, proposes fixes or explanations, applies changes with user confirmation, and updates thread status via the platform's API. Use when the user wants to address PR feedback or resolve review threads.

microsoft/PromptKit · 62 tokens

github-operations

WORKFLOW SKILL — Full GitHub contribution lifecycle: branches, conventional commits, issues, PRs, Actions, releases. gh CLI-first with MCP fallback. WHEN: "commit", "push", "open PR", "create branch", "create issue", "cut release", "GitHub operation". DO NOT USE FOR: Azure infrastructure, Bicep/Terraform code…

jonathan-vella/apex-accelerator · 101 tokens

codex

Delegate coding tasks to the OpenAI Codex CLI for features, refactoring, PR reviews, and batch fixes. Requires the codex CLI and typically a git repository.

deepelementlab/jupyter-studio · 37 tokens

code-review-and-quality

Conducts multi-axis code review for .NET/C# changes (correctness, readability, architecture, security, performance). Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to assess code quality across multiple dimensions before it enters the main…

peterblazejewicz/claude-plugins · 68 tokens