senior-secops

Scan code for vulnerabilities, assess dependency CVEs, and verify SOC 2, PCI-DSS, HIPAA, and GDPR compliance.

1|Updated May 10, 2026
One-click install
npx skills add https://github.com/Tgoldi/claude-skills --skill senior-secops-tgoldi
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: senior-secops
Source: https://github.com/Tgoldi/claude-skills/tree/main/senior-secops
Command: npx skills add https://github.com/Tgoldi/claude-skills --skill senior-secops-tgoldi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Security audits, vulnerability triage, and compliance verification are manual, error-prone processes that slow down development and leave gaps in security posture. This Skill automates security scanning, dependency vulnerability assessment, and multi-framework compliance checking so teams can detect issues early and maintain audit readiness. ## Core Features & Use Cases - Security Scanner: Detects hardcoded secrets, SQL injection, XSS, command injection, and path traversal patterns across Python, JavaScript, TypeScript, Go, and other source files with severity filtering and JSON reporting. - Vulnerability Assessor: Scans npm, Python, and Go dependency files for known CVEs with CVSS scores, affected versions, and fixed-version remediation guidance. - Compliance Checker: Verifies controls against SOC 2, PCI-DSS, HIPAA, and GDPR frameworks, producing compliance scores and evidence-backed findings. - Use Case: Add a CI/CD security gate to your pipeline that fails pull requests when critical vulnerabilities or hardcoded secrets are detected, then generate a combined JSON report for your security team. ## Quick Start Run a full security audit on my project by scanning the code for vulnerabilities, checking dependencies for CVEs, and verifying SOC 2 compliance.

Frequently Asked Questions about senior-secops

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scan source code for hardcoded secrets and vulnerabilities?▼

Run security_scanner.py against your project directory to detect hardcoded API keys, passwords, AWS credentials, SQL injection, XSS, and command injection patterns. Use the --severity flag to filter results and --json to export machine-readable reports.

How do I check dependencies for known CVEs in npm and Python projects?▼

Run vulnerability_assessor.py on your project directory to scan package.json, package-lock.json, requirements.txt, pyproject.toml, and go.mod files. It reports CVE IDs with CVSS scores, affected versions, and fixed versions for remediation.

What compliance frameworks does the compliance checker support?▼

The compliance checker supports SOC 2 Type II, PCI-DSS v4.0, HIPAA Security Rule, and GDPR. Select a specific framework with the --framework flag or run all frameworks together to get a combined compliance score with per-control evidence.

Can I integrate security scanning into a CI/CD pipeline?▼

Yes, all three scripts return exit codes suitable for pipeline gates: 0 for no critical findings, 1 for high severity, and 2 for critical severity. Add them as steps in GitHub Actions to fail pull requests when security thresholds are exceeded.

Why does the security scanner report false positives on test files?▼

The scanner automatically skips comments, test files, and example values to reduce noise. If findings still appear in non-production code, use the --severity flag to raise the reporting threshold or review the flagged patterns manually.