Automated security review
Portable agent workflow framework for Codex, Claude Code, and OpenCode—shared project context, focused skills, independent review, and safe updates.
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.
2 things to look at
- 19 days oldThe repository was created 19 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.7 KB, 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.