gdpr-compliance
GDPR compliance - data subject rights, lawful basis, DPIA, privacy by design, breach notification, consent management, cross-border transfers, PII masking
npx skills add vibeeval/vibecosystem --skill gdpr-compliance --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# GDPR Compliance ## Data Subject Rights ### Rights Overview | Right | Article | SLA | Implementation | |-------|---------|-----|----------------| | Right of Access | Art. 15 | 30 gun | Data export endpoint | | Right to Rectification | Art. 16 | 30 gun | Profile edit + audit trail | | Right to Erasure | Art. 17 | 30 gun | Cascading delete + anonymize | | Right to Restriction | Art. 18 | 30 gun | Processing flag on record | | Right to Portability | Art. 20 | 30 gun | Machine-readable export (JSON/CSV) | | Right to Object | Art. 21 | 30 gun | Opt-out mechanism | | Automated Decision-Making | Art. 22 | 30 gun | Human review override | ### Data Subject Request Handler ```typescript interface DSRRequest { id: string; type: 'access' | 'rectification' | 'erasure' | 'restriction' | 'portability' | 'objection'; subjectId: string; verifiedIdentity: boolean; receivedAt: Date; deadline: Date; // receivedAt + 30 gun status: 'received' | 'verified' | 'processing' | 'completed' | 'rejected'; reason?: string; } async function handleDSR(request: DSRRequest): Promise<DSRResponse> { // Step 1: Identity verification ZORUNLU if (!request.verifiedIdentity) { return { status: 'rejected', reason: 'Identit
- Data Subject Rights
- Rights Overview
- Data Subject Request Handler
- Right to Erasure Implementation
- Lawful Basis for Processing
- Lawful Basis Checklist
- Data Protection Impact Assessment (DPIA)
- When Required (Art. 35)
- DPIA Template
- Privacy by Design Patterns
- Data Minimization
- PII Masking
- Encryption at Rest
- Data Breach Notification (72 Saat Kurali)
What does the gdpr-compliance skill do?
GDPR compliance - data subject rights, lawful basis, DPIA, privacy by design, breach notification, consent management, cross-border transfers, PII masking
How do I install it?
Run `npx skills add vibeeval/vibecosystem --skill gdpr-compliance --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
