shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/security-scan
Context preview
What this command does when you run it.
Run the security scan gate before pushing.
Stats
Stars23,062
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
security-scan.md
--- description: Run the security scan gate before pushing. --- 1. Ensure dependencies are installed: ```bash pip install safety==3.2.4 brew install gitleaks # or appropriate package manager ``` 2. Scan for committed secrets: ```bash gitleaks detect --verbose --redact ``` - Resolve any findings before continuing. 3. Audit Python dependencies (if requirements files exist): ```bash 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.
