Skip to content

compliance-checklists

Quick-reference checklists for regulatory compliance reviews. Code-level checks — not full compliance audits. Catches the most common violations in pull requests.

From plugin
vexjoy-agent
413198 skills198 agents10 commands86 hooks
Install
$ npx -y skills add notque/vexjoy-agent --agent claude-code

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

Quick-reference checklists for regulatory compliance reviews. Code-level checks — not full compliance audits. Catches the most common violations in pull requests.

Agent definition

compliance-checklists.md

Compliance Checklists Reference

Quick-reference checklists for regulatory compliance reviews. Code-level checks — not full compliance audits. Catches the most common violations in pull requests.

GDPR (General Data Protection Regulation)

Applies to: any system processing EU resident personal data.

| # | Requirement | Code-Level Check | |---|------------|-----------------| | 1 | Lawful basis for processing | Consent collected before processing? Purpose documented? | | 2 | Data minimization | Collecting only fields actually used? | | 3 | Right to erasure | User data deletable? Cascading deletes handled? | | 4 | Right to export | User data exportable (JSON/CSV)? | | 5 | Data retention limits | Records auto-deleted after retention period? TTL? | | 6 | Encryption at rest | PII encrypted in DB? Keys rotated? | | 7 | Encryption in transit | TLS enforced? Internal calls encrypted? | | 8 | Access logging | Personal data access logged with who/when/why? | | 9 | Cross-border transfer | Data leave EU? Transfer mechanisms documented? | | 10 | Breach notification | Affected users identifiable within 72 hours? |

SOC 2 (Service Organization Control)

Applies to: SaaS providers, cloud services, data processors.

| # | Trust Principle | Code-Level Check | |---|----------------|-----------------| | 1 | Security — Access control | RBAC with least privilege? No shared credentials? | | 2 | Security — Authentication | MFA? Password policy? Session timeouts? | | 3 | Security — Encryption | At rest and in transit? Key management documented? | | 4 | Security — Logging | Security events logged? Tamper-evident? Retention policy? | | 5 | Availability — Monitoring | Health checks? Alerting? SLOs defined? | | 6 | Availability — Backup | Automated backups? Tested restore? | | 7 | Availability — Redundancy | SPOFs identified? Failover tested? | | 8 | Confidentiality — Classification | Data classified (public/internal/confidential/restricted)? | | 9 | Confidentiality — Access | Need-to-know enforced? Data masking for non-prod? | | 10 | Processing integrity | Input validation? Output verification? Error handling? |

PCI-DSS (Payment Card Industry)

Applies to: any system storing, processing, or transmitting cardholder data.

| # | Requirement | Code-Level Check | |---|------------|-----------------| | 1 | No plaintext card storage | Card numbers never stored plaintext. Never logged. | | 2 | Tokenization | Raw card numbers replaced with tokens? | | 3 | Encryption of stored data | If stored, encrypted with AES-256+? | | 4 | TLS 1.2+ | All cardholder data over TLS 1.2+? | | 5 | No card data in logs | Grep logs for card patterns (4/5/6xxx-xxxx-xxxx-xxxx). | | 6 | Access control | Restricted to need-to-know roles? | | 7 | Unique IDs | Each user has unique credentials? | | 8 | Input validation | Payment inputs validated and sanitized? | | 9 | Error handling | Payment errors don't leak card data? | | 10 | Key management | Keys rotated? Split knowledge for custodians? |

HIPAA (Health Insurance Portability)

Applies to: systems handling Protected Health Information (PHI).

| # | Requirement | Code-Level Check | |---|------------|-----------------| | 1 | PHI encryption at rest | All PHI fields encrypted? | | 2 | PHI encryption in transit | TLS enforced for all PHI? | | 3 | Access controls | RBAC with audit trail? | | 4 | Audit logging | All PHI access logged (user, timestamp, action)? | | 5 | Minimum necessary | Only minimum PHI accessed for the function? | | 6 | De-identification | PHI de-identifiable for analytics/testing? | | 7 | Backup and recovery | Backups encrypted? Recovery tested? | | 8 | Business associate agreements | Third-party PHI handlers have BAAs? | | 9 | Breach notification | Affected individuals identifiable? | | 10 | Disposal | PHI purged when no longer needed? |

German & EU Frameworks

Extended German and EU compliance frameworks are in dedicated reference files. Load these when the review context involves German entities, EU financial services, or industry-specific requirements.

| Framework | Reference File | Checks | |-----------|---------------|:------:| | BSI IT-Grundschutz | [german-it-security.md](german-it-security.md) | 12 | | KRITIS (expanded) | [german-it-security.md](german-it-security.md) | 12 | | NIS2UmsuCG | [german-it-security.md](german-it-security.md) | 9 | | DORA | [financial-resilience-de-eu.md](financial-resilience-de-eu.md) | 10 | | KWG/MaRisk | [financial-resilience-de-eu.md](financial-resilience-de-eu.md) | 3 | | TISAX | [industry-specific-compliance.md](industry-specific-compliance.md) | 8 | | GoBD, HGB, TDDDG, eIDAS, AI Act | Legal skill: `german-business-compliance.md` | 35 |

Also see [sovereign-cloud-data-residency.md](sovereign-cloud-data-residency.md) for BSI C5, BDSG/DSGVO, and EU data residency checks.

How to Use in Reviews

1. Identify which frameworks apply (from project context or ADR) 2. Scan relevant checklist against changed code 3. Report violations with specific requirement number 4. Distinguish hard violations (must fix) from gaps (should address)

Not every item applies to every PR. Focus on items relevant to the specific changes.

Read more
Ships withvexjoy-agent

Essays and writing behind this toolkit live at vexjoy.com. AI agents skip steps. "Looks correct" replaces running tests. "Trivial change" replaces verification.

Get the whole plugin, auto-invoked