security-reviewer

Audit codebases for vulnerabilities and produce triaged security findings with remediation guidance.

31|2|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/shaharia-lab/agento --skill security-reviewer-shaharia-lab
Or copy as Structured Prompt for Agentā–¼
Please help me install this Agent Skill.
Skill: security-reviewer
Source: https://github.com/shaharia-lab/agento/tree/main/.claude/skills/security-reviewer
Command: npx skills add https://github.com/shaharia-lab/agento --skill security-reviewer-shaharia-lab

SYSTEM DOCUMENTATION & REQUIREMENTS

šŸ’” This Skill includes references (resource) components.

What problem does it solve? Manual security reviews are slow and inconsistent, often missing entire vulnerability classes. This Skill performs a systematic security audit of a codebase, recent changes, or a specific attack surface, and produces triaged findings with severity, exploitability, and remediation steps. ## Core Features & Use Cases - Full codebase audits: Maps entry points and trust boundaries, then checks all major vulnerability categories including injection, authentication, authorization, data exposure, cryptography, and denial of service. - Change-focused reviews: Uses git history to review recent commits for security regressions and newly introduced attack surface. - Targeted attack-surface audits: Traces data flow through a specific feature such as an authentication flow, testing it against OWASP categories. - Structured reporting: Every finding includes file path, line number, vulnerable code, a realistic attack scenario, CVSS estimate, CWE reference, and remediation code, ending with a triage summary and prioritized action plan. - Use Case: Before a release, ask for an audit of the last 7 days of changes to catch a SQL injection or hardcoded secret introduced in a recent commit before it ships. ## Quick Start Ask the agent to audit the authentication flow for security vulnerabilities and produce a triaged report.

Frequently Asked Questions about security-reviewer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a security audit on my codebase?ā–¼

Invoke the security-reviewer skill with a task such as "audit the codebase". It maps entry points and trust boundaries, checks all vulnerability categories from injection to cryptographic failures, and outputs a triaged report with severity and remediation for each finding.

How to review recent code changes for security regressions?ā–¼

Provide a task like "review last 7 days changes". The skill runs git log and git diff to identify changed files, reads each one for security-relevant modifications, and checks whether the changes introduce new attack surface or weaken existing controls.

What vulnerability categories does a security audit cover?ā–¼

The audit covers injection, authentication and session management, authorization, data exposure, input validation, security misconfiguration, cryptographic failures, dependency CVEs, race conditions, cross-platform issues, and denial of service, mapped to the OWASP Top 10.

Can I audit only one feature like the authentication flow?ā–¼

Yes. Specify a target such as "audit the authentication flow" and the skill locates all related files with Grep and Glob, traces data flow across trust boundaries, and tests the target against each OWASP category with defense-in-depth checks.

What does the security audit report include?ā–¼

Each finding includes file path and line number, vulnerable code snippet, severity and CVSS estimate, a realistic attack scenario, remediation code, effort estimate, and CWE references. The report ends with a triage summary, attack surface map, and prioritized fix plan.