CtrlK
BlogDocsLog inGet started
Tessl Logo

jbvc/agents-security-scan

Run the security scan gate before pushing.

51

Quality

64%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Overview
Quality
Evals
Security
Files
name:
agents-security-scan
description:
Run the security scan gate before pushing.
  1. Ensure dependencies are installed:
    pip install safety==3.2.4
    brew install gitleaks  # or appropriate package manager
  2. Scan for committed secrets:
    gitleaks detect --verbose --redact
    • Resolve any findings before continuing.
  3. Audit Python dependencies (if requirements files exist):
    for f in $(find . -name "requirements*.txt" 2>/dev/null); do
        safety check --full-report --file "$f"
    done
  4. Record results in the commit template's Testing section.
  5. After a clean pass, proceed with commit and push workflow.
Workspace
jbvc
Visibility
Public
Created
Last updated
Publish Source
CLI
Badge
jbvc/agents-security-scan badge