What problem does it solve? Static analysis alone misses vulnerabilities that only appear in a running application, such as SQL injection, misconfigured CORS headers, and broken authentication. This Skill sets up dynamic application security testing (DAST) so externally-facing services are actively attacked in CI before merge. ## Core Features & Use Cases - ZAP Baseline and API Scans: Generates GitHub Actions or GitLab CI jobs for passive baseline scans on every PR and active OpenAPI-driven API scans after staging deploys. - Nuclei Integration: Adds targeted vulnerability scanning with 7,000+ community templates for CVEs, misconfigurations, and exposed secrets. - SARIF Reporting and Severity Gates: Uploads findings to the GitHub Security tab and fails CI on HIGH or CRITICAL severity, with per-rule overrides in .zap/rules.tsv. - Use Case: Before merging a new REST API, generate a CI workflow that runs a ZAP baseline scan on each pull request and an authenticated API scan against staging, blocking the merge on high-severity findings. ## Quick Start Set up DAST scanning for my service with a ZAP baseline scan on every PR and an API scan against staging using my OpenAPI spec.