adr
Write an Architecture Decision Record documenting a significant technical decision.
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.
/secrets-scanContext preview
What this command does when you run it.
Scan the codebase for leaked secrets, API keys, tokens, and credentials.
Scan the codebase for leaked secrets, API keys, tokens, and credentials.
1. Define patterns to search for:
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:
6. Check if `.gitignore` properly excludes sensitive files (`.env`, `*.pem`, `*.key`). 7. Suggest remediation for each finding.
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
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
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.