Security & compliance auditing plugins for Claude Code. Scans for HIPAA, GDPR, PCI DSS, PIPEDA, CCPA, and SOC 2 violations.
npx claudepluginhub sofianetoumert/security-auditor-pluginSecurity & compliance auditor for Claude Code. Scans for HIPAA, GDPR, PCI DSS, PIPEDA, CCPA, and SOC 2 violations including PII in logs, hardcoded secrets, and input validation issues.
A comprehensive security and compliance auditor plugin for Claude Code. Scans codebases for HIPAA, GDPR, PCI DSS, PIPEDA, CCPA, and SOC 2 violations including PII in logs, hardcoded secrets, and input validation issues.
/security-reviewscans the full codebase./security-review-diffscans only changed files (git diff) for fast pre-PR checks.
| Skill | Command | Description |
|---|---|---|
| Security Review | /security-review | Full codebase 8-item security checklist (input validation, PII, secrets, HTTPS, headers, tokens, encryption, errors) |
| Security Review Diff | /security-review-diff | Same 8-item checklist, but only on changed files (git diff) — ideal for PRs |
| Secrets Check | /secrets-check | Gitleaks + custom patterns for 14+ secret types |
| PII Scanner | /pii-scanner | Detects PII in logs, errors, and console output |
| Compliance Check | /compliance-check | Full HIPAA/GDPR/PCI DSS/PIPEDA/CCPA/SOC 2 validation |
| Compliance Report | /generate-compliance-report | Generates stakeholder-ready compliance reports |
Bundled markdown docs covering all major compliance frameworks:
| Document | Contents |
|---|---|
docs/compliance/usa-hipaa-ccpa-soc2.md | HIPAA, CCPA, SOC 2, PCI DSS, NIST, FedRAMP |
docs/compliance/canada-pipeda.md | PIPEDA, Quebec Law 25, provincial laws |
docs/compliance/europe-gdpr.md | GDPR, NIS2, DORA, EU AI Act, ISO 27001 |
docs/compliance/logging-data-protection.md | Logging requirements across all standards |
docs/compliance/gap-analysis-roadmap.md | Common gaps and remediation roadmap |
config/.gitleaks.toml - Default gitleaks configuration with 18 secret patternsdocs/SECURITY_GUIDELINES.md - Universal security implementation guidelinesclaude plugin marketplace add ~/path/to/security-auditor-plugin
claude plugin install security-auditor@stoumert-plugins
claude plugin marketplace add <git-url>
claude plugin install security-auditor@stoumert-plugins
# Full codebase security checklist (all files)
/security-review [path]
# Security checklist on changed files only (git diff)
/security-review-diff [base-branch]
# Scan for hardcoded secrets
/secrets-check [path]
# Find PII in logs
/pii-scanner [path]
# Validate compliance frameworks
/compliance-check [path]
# Generate compliance report for stakeholders
/generate-compliance-report [--format=pdf|json]
# Check entire codebase
/security-review
# Check specific directory
/pii-scanner src/features/auth/
# Check after implementing payment features
/compliance-check src/payments/
# Monthly audit report
/generate-compliance-report
req.body usage)| Framework | Focus | Max Penalty |
|---|---|---|
| HIPAA | Healthcare PHI | $50,000/violation |
| GDPR | EU personal data | 4% annual revenue |
| PCI DSS 4.0 | Payment cards | $500,000/month |
| PIPEDA | Canadian data | CA$100,000 |
| CCPA | California data | $7,500/violation |
| SOC 2 | Security controls | Audit failure |
Add to your GitHub Actions workflow:
name: Security Audit
on: [pull_request]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Gitleaks
run: |
docker run --rm -v $PWD:/path zricethezav/gitleaks:latest \
detect --source="/path" -v -c /path/.gitleaks.toml
- name: Claude Security Review
run: |
claude /security-review
If your project has its own .gitleaks.toml, it takes precedence over the plugin's bundled default.
The skills use regex-based detection. You can extend patterns by creating project-specific security rules in your CLAUDE.md.
MIT
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations