security-audit-triage

Validates pentest findings against source code and produces prioritized P0/P1 remediation scope.

Updated Jun 12, 2026
One-click install
npx skills add https://github.com/oleyna80/agentic-sdlc-framework --skill security-audit-triage-oleyna80
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: security-audit-triage
Source: https://github.com/oleyna80/agentic-sdlc-framework/tree/main/skills/security-audit-triage
Command: npx skills add https://github.com/oleyna80/agentic-sdlc-framework --skill security-audit-triage-oleyna80

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Pentest reports and CVE lists often contain unverified hypotheses and inflated severities, leading teams to over-engineer fixes or chase non-issues. This Skill maps each finding to real code with file:line evidence, separates confirmed risks from noise, and produces a realistic fix backlog. ## Core Features & Use Cases - Finding Verification: Classifies each reported issue as confirmed, partially confirmed, or not confirmed with concrete file:line evidence. - Severity Recalibration: Recomputes severity based on the project's actual runtime context (SQL-first architecture, reverse proxy, launch constraints) instead of copying external report ratings. - Prioritized Remediation Scope: Outputs a minimal safe P0/P1 fix set, a deferred P2 set, and an explicit list of risky changes that could break runtime. - Use Case: After receiving an external pentest report for your API, run this Skill to verify which injection, XSS, and auth bypass findings actually exist in the codebase before committing engineering time to fixes. ## Quick Start Ask the agent to validate the security audit report against the codebase and produce a findings matrix with adjusted severities and a P0/P1 remediation scope.

Frequently Asked Questions about security-audit-triage

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

FAQPage Schema
How do I validate a pentest report against my codebase?▼

Map each reported finding to the actual code paths it claims to affect, checking entry points like API handlers, storage layers, and proxies. Classify each as confirmed, partially confirmed, or not confirmed with file:line evidence before planning fixes.

How to prioritize security findings from an external audit?▼

Recalculate severity based on your actual runtime context rather than copying the report's ratings, since deployment architecture often mitigates theoretical risks. Then build a minimal P0/P1 remediation set and defer lower-risk items to P2.

Does this Skill modify code to fix vulnerabilities?▼

No, it operates in read-only reviewer mode and only performs analysis until explicit confirmation for implementation is given. Remediation is handed off to a separate security-hardening step after the findings matrix is finalized.

What OWASP Top 10 risks can be checked in an API?▼

The triage covers injection, XSS, and authentication bypass patterns by inspecting API entry points, storage access, and dependency surfaces. Each pattern is verified against real code rather than assumed from the external report.

Why do pentest reports overstate vulnerability severity?▼

External reports often rate findings generically without knowing your runtime architecture, such as reverse proxies or SQL-first constraints that neutralize attack vectors. Verifying findings in code context prevents over-engineering and wasted remediation effort.