| name | source-command-security |
| description | Run security scans and vulnerability checks |
source-command-security
Use this skill when the user asks to run the migrated source command security.
Command Template
Run comprehensive security scans on the project.
Execute the following security checks:
- Bandit security linter:
bandit -r src/ -ll
- Safety dependency vulnerability check:
safety check
- Check for secrets in code:
detect-secrets scan --baseline .secrets.baseline
- Review .env.example to ensure no credentials are exposed
Report back with:
- Any security vulnerabilities found
- Severity levels (LOW, MEDIUM, HIGH, CRITICAL)
- Recommended remediation steps
- Dependencies that need updating
- Overall security posture assessment