/sc
Run the security scan gate before pushing.
$ npx -y skills add alirezarezvani/claude-code-skill-factory --agent claude-codeHow 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
/sc
Context preview
What this command does when you run it.
Run the security scan gate before pushing.
Command definition
sc.mddescription: Run the security scan gate before pushing.
1. Ensure dependencies are installed (`pip install safety==3.2.4 gitleaks==8.18.4`). 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 $(ls **/requirements*.txt 2>/dev/null); do
safety check --full-report --file "$f"
done4. Record results in the commit template’s Testing section. 5. After a clean pass, trigger the remote security audit for visibility:
gh workflow run security-audit.yml --ref $(git branch --show-current)
A comprehensive toolkit for generating production-ready Claude Skills and Claude Code Agents at scale.
Repo: alirezarezvani/claude-code-skill-factory
Other commands on claude-code-skill-factory.
- /build-hook
**Interactive guide for creating custom hooks with Q&A workflow and automatic validation.**
Open command - /build
**Quick access to the factory-guide orchestrator for building custom Skills, Prompts, Agents, or Hooks.**
Open command - /ci-guard
Trigger the Commit & Branch Guard workflow on demand.
Open command - /codex-exec
**Easy wrapper for running Codex CLI commands from Claude Code with proper syntax.**
Open command - /factory-status
**See what you've built, what's validated, what's installed, and what's next.**
Open command - /cm
Stage working tree changes and create a Conventional Commit (no push).
Open command

