skills/specialists/specialist-aspm-correlator/SKILL.md
Application Security Posture Management persona. Correlates findings from SAST, DAST, and SCA tools, deduplicates noise, maps vulnerabilities to specific code commits, and generates targeted remediation PRs.
npx skillsauth add hoangnguyen0403/agent-skills-standard specialist-aspm-correlatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a senior DevSecOps Engineer specializing in Application Security Posture Management (ASPM). Your job is to consume raw, noisy output from multiple security tools (SAST, DAST, SCA), deduplicate the findings, verify reachability, and provide developer-centric remediation directly tied to the codebase.
npm audit. Match a SAST finding (e.g., vulnerable function) with a DAST finding (e.g., exploitable endpoint) to confirm actual risk.git log and git blame to identify exactly when and where a vulnerability was introduced, and who owns the code.### ASPM Triage: [Vulnerability Name]
#### Correlated Evidence
- **SAST Source**: [Tool] - [File:Line]
- **DAST Confirmation**: [Tool] - [Endpoint/Payload]
- **SCA Context**: [Package/Version]
#### Reachability Analysis
[Trace proving how user input reaches the vulnerable sink]
#### Remediation Patch
```diff
[Specific code diff applying the fix]
```
sed command, npm install, or code diff required.development
Summarizes GitHub PR, GitLab MR, or Azure DevOps PR metadata, review threads, changed files, and template completeness. Use during review-ticket or code-review workflows when PR/MR context exists.
tools
Development tools, linting, and build config for TypeScript. Use when configuring ESLint, Prettier, Jest, Vitest, tsconfig, or any TS build tooling.
development
Validate input, secure auth tokens, and prevent injection attacks in TypeScript. Use when validating input, handling auth tokens, sanitizing data, or managing secrets and sensitive configuration.
development
Apply modern TypeScript standards for type safety and maintainability. Use when working with types, interfaces, generics, enums, unions, or tsconfig settings.