Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
"Run a security audit" / "Check for vulnerabilities" / "Scan for secrets" / "OWASP check"
Overview
4-phase security audit tailored for TypeScript/Node.js projects. See presets/shared/.github/skills/security-audit/SKILL.md for the full report format and secrets detection patterns.
Follow the shared skill report format. See presets/shared/.github/skills/security-audit/SKILL.md Phase 4.
Safety Rules
READ-ONLY — do NOT modify any files
Do NOT log actual secret values — show only first 8 characters + ***
Do NOT recommend disabling security features as a fix
Temper Guards
Shortcut
Why It Breaks
"This scan is probably all false positives"
False positives exist, but dismissing findings without investigation misses real vulnerabilities. Verify each finding individually.
"We'll fix the medium-severity findings later"
Medium findings compound. An XSS + a missing header + an unvalidated input = a real exploit chain. Fix or explicitly accept the risk with documentation.
"Test files don't need security review"
Test files contain connection strings, mock credentials, and API patterns that leak into production via copy-paste. Review them at INFO level.
"The dependency scanner isn't installed, skip Phase 2"
Report the missing scanner and continue with other phases. Don't fail the entire audit — partial results are better than none.
"This is an internal API, OWASP doesn't apply"
Internal APIs get exposed through misconfiguration. OWASP applies to all HTTP surfaces regardless of intended audience.
Warning Signs
Audit completed without running all 4 phases (OWASP + deps + secrets + report)
Findings dismissed without individual verification
Secret values logged in full instead of first 8 chars + ***
Severity ratings assigned subjectively instead of using OWASP/CWE classification
CRITICAL findings present but overall verdict is PASS