Automated security review
Wire automated security scanning into CI so every pull request is scanned for vulnerable dependencies, committed secrets, and code weaknesses. Use when setting up or improving a project's security gates in GitHub Actions.From its SKILL.md
npx -y skills add K95M65/AI_ONBOARD --skill automated-security-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.7 KB, 348 tokens by cl100k_base, as published. Nobody here has run it
Automated security review
Turns the manual security skills into a standing gate: what dependency-vuln-scan, secret-scan, and a
SAST run do by hand, run automatically on every PR.
When to use
Setting up (or hardening) a repo's CI security checks.
Steps
- Generate a starter GitHub Actions workflow:
It writesbash scripts/gen-workflow.sh [.github/workflows]security.ymlwith three jobs: dependency scan (npm audit / govulncheck), secret scan (gitleaks, full history), and SAST (Semgrep). Refuses to overwrite an existing file. - Adapt it to your stack: enable the ecosystem jobs you use, set severity thresholds, and decide which jobs block the merge vs report only.
- Require the check in branch protection so failures actually gate the merge.
- Keep the human lens too: automated scans catch known patterns; the
security-reviewsubagent andsecurity-auditskill catch logic/authz bugs that scanners miss. Automation is the floor, not the ceiling.
What to gate on
- Block: committed secrets (any), new Critical/High dependency CVEs, SAST High findings.
- Report: Medium/Low — surface without blocking, triage in review.
Notes
- The workflow pins actions and runs on
pull_request+pushto the default branch. - False positives are expected — tune ignore files (
.gitleaksignore, Semgrep rule selection) rather than disabling a whole job.
What ships with it: 2 files
2.3 KB alongside SKILL.md, 1 of them executable
scripts/
- gen-workflow.shruns739 B
templates/
- security.yml.tmpl1.6 KB