Install
$ agentstack add skill-nainishshafi-developer-productivity-skills-github-security-scanner-hook ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
GitHub Security Scanner Hook
Scan staged files for secrets and code-level security vulnerabilities before every git commit. Works with any language or file type — detect-secrets finds hardcoded credentials and API keys; semgrep finds injection flaws, XSS, path traversal, and OWASP Top 10 patterns across Python, JavaScript, Go, Ruby, Java, and more. Can run as a one-off manual scan or install as an automated git pre-commit hook.
Prerequisites
- Python 3.8+ available on PATH (to create the
.venv) - Git repository (any language — Python, JS, Go, Ruby, Java, etc.)
- Staged files to scan, or
--full-repoto scan everything - Internet access on first run only (to pip-install
detect-secretsandsemgrep) - Write access to
.git/hooks/(for hook installation only)
Workflow
Step 1 — Set Up .venv and Install Tools
Always use .venv — create it if it does not exist, then resolve the correct interpreter:
[ -d .venv ] || python -m venv .venv
PYTHON=$(if [ -f .venv/Scripts/python ]; then echo .venv/Scripts/python; else echo .venv/bin/python; fi)
Install detect-secrets and semgrep into the venv if not already present:
$PYTHON -m pip show detect-secrets > /dev/null 2>&1 || $PYTHON -m pip install detect-secrets
$PYTHON -m pip show semgrep > /dev/null 2>&1 || $PYTHON -m pip install semgrep
Both tools are optional independently — if semgrep is not installed the scan still runs with detect-secrets only. Semgrep uses the bundled rules in rules/security.yml (no login or network access required).
Step 2 — Run Security Scan on Staged Files
Run scan-staged.py to check all currently staged files:
$PYTHON .github/skills/github-security-scanner-hook/scripts/scan-staged.py
To scan the entire repository instead of only staged files:
$PYTHON .github/skills/github-security-scanner-hook/scripts/scan-staged.py --full-repo
The script prints a JSON summary to stdout and exits with:
- Exit code 0 — no findings (clean)
- Exit code 1 — one or more HIGH severity findings (would block the commit)
- Exit code 2 — only MEDIUM or LOW severity findings (warnings, no block)
Step 3 — Review and Present Findings
Parse the JSON output and present findings grouped by severity:
- HIGH — Must be fixed before committing. Identify the flagged file and line, explain what was found (e.g., "AWS secret key on line 14 of
config.py"), why it is dangerous, and the specific remediation steps. - MEDIUM — Warn the user with a clear explanation and ask whether they want to fix it first or proceed.
- LOW — Mention briefly and move on unless the user asks for detail.
For each finding include: file path, line number, finding type, severity, and a plain-English explanation. Consult references/github-security-scanner-hook-reference.md for the full severity table, finding types, and remediation guidance.
If the scan is clean (exit code 0), confirm clearly: "No security issues found in staged files."
Step 4 — Install Pre-Commit Hook (Optional)
Ask the user: "Would you like to install this as a git pre-commit hook so every future commit is scanned automatically?"
If yes:
$PYTHON .github/skills/github-security-scanner-hook/scripts/install-hook.py
The installer:
- Detects whether
.git/hooks/pre-commitalready exists — if it does, it offers to Append (default), Overwrite, or Skip rather than silently destroying existing hooks - Creates or extends the hook to call
scan-staged.pybefore every commit - Makes the hook executable
- Prints the hook path and a confirmation message
After installation, remind the user:
- The hook lives in
.git/hooks/pre-commit— this directory is not tracked by git, so each contributor must runinstall-hook.pythemselves to opt in - HIGH severity findings block the commit; MEDIUM/LOW prompt a confirmation
- Emergency bypass:
git commit --no-verify— see the reference for important caveats
Step 5 — Remediate Issues
For each HIGH or MEDIUM finding the user wants to fix:
- Open the flagged file at the reported line number
- For hardcoded credentials: Replace with an environment variable (
os.environ["KEY_NAME"]) or a secrets manager call - For private keys: Remove the key, revoke it immediately (assume it is compromised), generate a new one, and add the key file pattern to
.gitignore - For weak cryptography (bandit): Replace insecure functions — e.g.,
hashlib.md5→hashlib.sha256,random.token_hex→secrets.token_hex - For false positives: Add to the
.secrets.baselineallowlist usingpython -m detect_secrets audit .secrets.baseline - Re-stage the fixed files and re-run Step 2 to confirm all HIGH findings are resolved
Additional Resources
references/github-security-scanner-hook-reference.md— Full severity classification table, detect-secrets plugin mapping, semgrep vulnerability types with remediation examples,.secrets.baselineworkflow, false-positive handling, CI/CD integration YAML,--no-verifywarning, and secret rotation checklistrules/security.yml— Bundled semgrep rules covering SQL injection, command injection, path traversal, XSS, eval/exec, and open redirects across Python, JavaScript/TypeScript, and Goscripts/scan-staged.py— Scans staged (or all tracked) files using detect-secrets and semgrep; outputs structured JSON with findings and severity summaryscripts/install-hook.py— Installs or extends the git pre-commit hook to automate scanning on every future commit
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: nainishshafi
- Source: nainishshafi/developer-productivity-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.