Git scan secrets
Skill ainova-systems/intelligence-dev-packs/packs/core/skills/git-scan-secrets
Intelligence pack for software engineering based on Ainova Systems best practices
npx -y skills add ainova-systems/intelligence-dev-packs --skill git-scan-secretsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 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
Scan diff, tree, or branch history for committed credentials
SKILL.md
1.8 KB, as published. Nobody here has run it
Scan for Secrets
Find credentials before they reach a remote; anything already pushed is an incident, not a cleanup. Default scope: the pending diff plus commits ahead of the target branch.
Steps
- Build the file set:
git diff --name-only+git diff --cached --name-only(+git log -p <target>..HEADfor branch commits;historyscope walksgit log -p --all -- <paths>). - Grep the patterns:
-----BEGIN,AKIA[0-9A-Z]{16},sk-,ghp_,xox[bp]-,AIza,eyJ[A-Za-z0-9_-]+\.(JWT),(password|secret|token|api[_-]?key)\s*[:=]\s*['"][^'"]+, connection strings with embedded credentials,.env-style files not covered by.gitignore. - Classify each hit: live secret (critical) / test or placeholder (downgrade only with evidence it is fake) / template reference (
${VAR}, vault path - not a finding). - Report:
file:line(or commit SHA for history hits), credential type, classification reasoning, redacted value. - Live secret not yet pushed - remove it from the commit and move the value to the environment or secret store. Already pushed - rotate first (it is compromised regardless of history), then purge per the platform procedure and add the path to
.gitignore.
Verify
- Every hit classified with evidence; zero live secrets remain in the outgoing diff.
Scope / hand-off
- Invoked by
dev-review-changesand the orchestrators pre-push; rotation itself belongs to the owner's secret store.
CRITICAL
- Rotation precedes any history rewrite - always.
- Never print a discovered live secret in full.
- Verify before flagging: a report full of false positives trains people to ignore it.