Run the security scan gate before pushing.
51
64%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
pip install safety==3.2.4
brew install gitleaks # or appropriate package managergitleaks detect --verbose --redactfor f in $(find . -name "requirements*.txt" 2>/dev/null); do
safety check --full-report --file "$f"
done