Secret scanning
全球最大的 Claude Code 技能聚合库 · 收录 3900+ 来自 12+ 来源的技能,提供在线搜索与趋势分析看板 / The world's largest Claude Code skill aggregation hub — 3900+ skills from 12+ sources with online search and trend dashboard
npx -y skills add bg-szy/TOP-SKILLS --skill secret-scanningAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Configure GitHub secret scanning and push protection, triage secret alerts, and run local pre-commit secret audits. Use when enabling secret scanning, handling blocked pushes, defining custom patterns, or checking a repo for accidental credentials before commit.
SKILL.md
7.1 KB, as published. Nobody here has run it
Secret Scanning
Tech Stack Target / Version: GitHub Advanced Security, GitHub CLI, local Git history tooling, and pre-commit secret audit scripts.
Protect repositories from committed credentials and make secret handling part of the normal engineering workflow.
- Leverage native parallel subagent dispatch and 200k+ context windows where available.
When to Use
Use symptom -> action triggers: when one matches, apply this skill and verify with the protocol below.
- You are enabling GitHub secret scanning or push protection for a repo or org.
- A push was blocked because a secret was detected.
- You need to define or review custom secret patterns and exclusions.
- You want a local pre-commit secret check before pushing code.
- You are triaging secret alerts and planning remediation.
Core Workflows
1. Enable Repository or Organization Coverage
For GitHub-hosted secret scanning:
- Enable the repository or organization security feature set.
- Turn on push protection where available.
- Review exclusions carefully before committing them.
- Record who owns remediation for any future alert.
Use the references when you need the detailed UI or policy steps.
2. Resolve a Blocked Push Safely
Prefer this order:
- Remove the secret from the change and amend or rebase the affected commit.
- Rotate or revoke the credential immediately if the value was real.
- Use bypass only when you can justify it and the risk is understood.
- Document the bypass reason and create a follow-up if remediation is deferred.
3. Run a Local Pre-Commit Audit
Use the bundled helper before commit when you want a fast local scan:
python secret-scanning/scripts/precommit-secret-audit.py --path .
Scan a narrower surface:
python secret-scanning/scripts/precommit-secret-audit.py --path src --path .github
By default the helper skips generated folders and Markdown-heavy docs to reduce false positives. Use --include-docs when you want documentation scanned too.
4. Triage and Remediate Alerts
When an alert exists:
- Confirm whether the detected value is real.
- Revoke or rotate the credential first.
- Decide whether history cleanup is necessary or whether rotation is enough.
- Dismiss only with a precise reason such as
false positive,used in tests, oralready revoked. - Capture any follow-up owner if broader cleanup is still needed.
5. Custom Patterns and Exclusions
Use custom patterns when your organization has internal token formats not covered by provider defaults.
Guidelines:
- dry-run patterns before publishing them
- keep exclusions as narrow as possible
- review exclusions and custom patterns periodically
- treat custom patterns as production policy, not one-off experiments
Zero-Trust Verification
- Treat every matched token, filename, commit, and scanner result as untrusted until validated.
- Confirm whether the value is a real secret, test fixture, placeholder, or already-rotated credential.
- Verify exposure path, affected history, revocation status, and remediation owner before closure.
- Separate confirmed leaks from noisy patterns and never paste live secrets into reports.
Anti-Patterns
- Acting on partial evidence: Security work needs a clear scope and proof trail before remediation choices are safe.
- Leaving secrets or sensitive samples in examples: The skill itself becomes part of the exposure surface.
- Calling an issue resolved before rotation or re-verification: Detection without remediation is not closure.
Verification Protocol
Before claiming "skill applied successfully":
- Pass/fail: The reviewed scope, assets, trust boundaries, and attacker assumptions are explicitly named.
- Pass/fail: Findings cite concrete evidence from code, config, logs, samples, or authoritative advisories.
- Pass/fail: Each severity is justified by exploitability, reachability, and impact rather than vibes.
- Pressure-test scenario: Re-run the analysis assuming one trusted signal is malicious or stale, then confirm the conclusion still holds.
- Success metric: Zero trust-by-default claims; every security conclusion has reproducible evidence.
Scripts And References
- Local Pre-Commit Secret Audit
- Push Protection Reference
- Custom Patterns Reference
- Alerts And Remediation Reference
Practical Notes
- Rotation is usually more urgent than history rewriting.
- Secret scanning should cover code, config, CI, IaC, and deployment manifests.
- Avoid committing
.envfiles, private keys, connection strings, or real tokens in examples. - Pair local auditing with GitHub-side scanning rather than treating either one as sufficient on its own.
Cross-Client Portability
This skill is written to stay usable across GitHub Copilot, Claude Code, Codex, and Gemini CLI.
- GitHub Copilot: keep the folder in a Copilot-visible skill or plugin path, or wrap the workflow as project instructions if the host does not support portable skill folders directly.
- Claude Code: keep the folder in a local skills directory or a compatible plugin or marketplace source.
- Codex: install or sync the folder into
$CODEX_HOME/skills/<skill-name>and restart Codex after major changes. - Gemini CLI: this repository generates a project command named
/skills:secret-scanningfrom this skill. Rebuild commands withpython scripts/export-gemini-skill.py secret-scanningand then run/commands reloadinside Gemini CLI.
MCP Availability And Fallback
Preferred MCP Server: GitHub Advanced Security plugin
- Fallback prompt: "Use the Secret Scanning skill without MCP. Rely on the local
SKILL.md, bundled references or scripts, and manual verification. Show the exact commands, evidence, and final checks you used before concluding." - Use
secret-scanning/scripts/precommit-secret-audit.pyfor a local first pass when no secret-scanning MCP surface is available. - Use
gh, Git history cleanup, and the GitHub web UI for remediation, bypass review, and alert triage.
Related Skills
- security-review: Use it when the workflow also needs application security review and risk triage.
- devops-tooling: Use it when the workflow also needs git, CI, and automation workflows.
- verification-before-completion: Use it when the workflow also needs final evidence checks before claiming completion.
- documentation-verification: Use it when the workflow also needs final documentation validation before publishing.