# Source Command Security

> Run security scans and vulnerability checks

- Skill: `enuno/source-command-security` (Agent Skill)
- Install (CLI): `npx skillmds@latest add enuno/source-command-security`
- Raw SKILL.md: https://api.skillmd.com/api/skills/enuno/source-command-security/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: enuno (https://skillmd.com/u/enuno)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/enuno/source-command-security

---


# 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:

1. Bandit security linter: `bandit -r src/ -ll`
2. Safety dependency vulnerability check: `safety check`
3. Check for secrets in code: `detect-secrets scan --baseline .secrets.baseline`
4. 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

