/secrets-scan
Scan the codebase for leaked secrets, API keys, tokens, and credentials.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --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
/secrets-scan
Context preview
What this command does when you run it.
Scan the codebase for leaked secrets, API keys, tokens, and credentials.
Command definition
secrets-scan.mdScan the codebase for leaked secrets, API keys, tokens, and credentials.
Steps
1. Define patterns to search for:
- AWS keys: `AKIA[0-9A-Z]{16}`, `aws_secret_access_key`.
- API keys: `sk-[a-zA-Z0-9]{32,}`, `api[_-]?key\s*[:=]`.
- Tokens: `ghp_`, `gho_`, `github_pat_`, `xoxb-`, `xoxp-`.
- Private keys: `-----BEGIN (RSA|EC|OPENSSH) PRIVATE KEY-----`.
- Database URLs: `(postgres|mysql|mongodb)://[^:]+:[^@]+@`.
- Generic secrets: `password\s*[:=]\s*["'][^"']+["']`, `secret\s*[:=]`.
2. Scan all tracked files: `git ls-files` (skip binary files). 3. Also scan `.env` files that may not be tracked. 4. Exclude known false positives (test fixtures, documentation examples, `.env.example`). 5. For each finding, determine severity:
- **CRITICAL**: Real credentials with high entropy that appear functional.
- **WARNING**: Patterns that look like secrets but may be placeholders.
- **INFO**: References to secret names without values.
6. Check if `.gitignore` properly excludes sensitive files (`.env`, `*.pem`, `*.key`). 7. Suggest remediation for each finding.
Format
Secrets Scan Results
====================
CRITICAL (immediate action required):
- <file>:<line> - <type>: <masked-value>
WARNING (review needed):
- <file>:<line> - <type>: <description>
.gitignore check:
- [ ] .env files excluded
- [ ] Key files excluded
Remediation:
1. Rotate <credential type>
2. Add <pattern> to .gitignore
Rules
- Never print full secret values; mask all but the first 4 characters.
- Scan both tracked and untracked files.
- Check git history for secrets in past commits using `git log -p --all -S`.
- Suggest `.gitignore` additions for any unprotected secret file patterns.
- Recommend using environment variables or secret managers for all findings.
Read more
Scan the codebase for leaked secrets, API keys, tokens, and credentials.
Steps
1. Define patterns to search for:
- AWS keys: `AKIA[0-9A-Z]{16}`, `aws_secret_access_key`.
- API keys: `sk-[a-zA-Z0-9]{32,}`, `api[_-]?key\s*[:=]`.
- Tokens: `ghp_`, `gho_`, `github_pat_`, `xoxb-`, `xoxp-`.
- Private keys: `-----BEGIN (RSA|EC|OPENSSH) PRIVATE KEY-----`.
- Database URLs: `(postgres|mysql|mongodb)://[^:]+:[^@]+@`.
- Generic secrets: `password\s*[:=]\s*["'][^"']+["']`, `secret\s*[:=]`.
2. Scan all tracked files: `git ls-files` (skip binary files). 3. Also scan `.env` files that may not be tracked. 4. Exclude known false positives (test fixtures, documentation examples, `.env.example`). 5. For each finding, determine severity:
- **CRITICAL**: Real credentials with high entropy that appear functional.
- **WARNING**: Patterns that look like secrets but may be placeholders.
- **INFO**: References to secret names without values.
6. Check if `.gitignore` properly excludes sensitive files (`.env`, `*.pem`, `*.key`). 7. Suggest remediation for each finding.
Format
Secrets Scan Results ==================== CRITICAL (immediate action required): - <file>:<line> - <type>: <masked-value> WARNING (review needed): - <file>:<line> - <type>: <description> .gitignore check: - [ ] .env files excluded - [ ] Key files excluded Remediation: 1. Rotate <credential type> 2. Add <pattern> to .gitignore
Rules
- Never print full secret values; mask all but the first 4 characters.
- Scan both tracked and untracked files.
- Check git history for secrets in past commits using `git log -p --all -S`.
- Suggest `.gitignore` additions for any unprotected secret file patterns.
- Recommend using environment variables or secret managers for all findings.
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Other commands on rohitg00-claude-code-toolkit.
- /adr
Write an Architecture Decision Record documenting a significant technical decision.
Open command - /design-review
Conduct a structured design review of a module, feature, or system component.
Open command - /diagram
Generate Mermaid diagrams from codebase analysis or description.
Open command - /migrate
Plan and execute a framework or library migration incrementally.
Open command - /plan
Create a structured implementation plan for the requested feature or change.
Open command - /refactor
Perform a systematic refactoring of the specified code area.
Open command

