MCP HubMCP Hub
스킬 목록으로 돌아가기

gdpr-compliance

guia-matthieu
업데이트됨 2 days ago
7 조회
111
20
111
GitHub에서 보기
기타data

정보

이 스킬은 동의 관리, 개인정보 보호 고지, 데이터 주체 권리에 대한 지침을 제공하여 개발자가 GDPR을 준수하는 마케팅 기능을 구현하도록 돕습니다. 동의 흐름 설계, 데이터 관행 감사, 사용자 데이터 요청 처리 시 유용합니다. 이 도구는 공식 조항과 가이드라인을 바탕으로 특정 GDPR 요구사항을 설명하며, 최종 구현 결정은 개발자가 내리게 됩니다.

빠른 설치

Claude Code

추천
기본
npx skills add guia-matthieu/clawfu-skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/guia-matthieu/clawfu-skills
Git 클론대체
git clone https://github.com/guia-matthieu/clawfu-skills.git ~/.claude/skills/gdpr-compliance

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

GDPR Compliance for Marketing

Ensure your marketing activities comply with GDPR requirements for consent, data processing, and privacy rights.

When to Use This Skill

  • Designing consent collection flows
  • Writing privacy notices
  • Auditing marketing data practices
  • Handling data subject requests
  • Documenting lawful basis

Methodology Foundation

Based on GDPR Articles 6, 7, 12-23 and EDPB Guidelines, covering:

  • Lawful basis determination
  • Consent requirements
  • Transparency obligations
  • Data subject rights
  • Documentation requirements

What Claude Does vs What You Decide

Claude DoesYou Decide
Explains GDPR requirementsBusiness risk tolerance
Drafts compliant languageImplementation priority
Identifies gapsLegal interpretation
Creates documentationDPO consultation needs
Suggests controlsResource allocation

Instructions

Step 1: Lawful Basis Assessment

Six Lawful Bases (Article 6):

BasisMarketing UseDocumentation Needed
ConsentEmail marketing, cookies, trackingConsent records
ContractCustomer communicationsContract terms
Legitimate InterestSoft opt-in, B2B marketingLIA document
Legal ObligationRegulatory commsLegal reference
Vital InterestRarely applicable-
Public TaskRarely applicable-

Marketing Activity Mapping:

ActivityTypical BasisRequirements
Email newsletterConsentDouble opt-in, easy unsubscribe
Existing customer upsellLegitimate InterestLIA, opt-out available
Cold B2B outreachLegitimate InterestLIA, clear identity
Website cookiesConsentBanner, granular choices
Retargeting adsConsentCookie consent
Lead magnetsConsentClear purpose, separate consent

Step 2: Consent Requirements

Valid Consent Criteria (Article 7):

RequirementWhat It MeansExample
Freely givenNo bundling, no penaltySeparate from T&Cs
SpecificClear purpose stated"Marketing emails about [X]"
InformedWho, what, why explainedPrivacy notice linked
UnambiguousClear affirmative actionUnchecked checkbox
WithdrawableEasy to revokeOne-click unsubscribe

Consent Record Requirements:

Record for each consent:
- Who consented (identifier)
- When (timestamp)
- What they consented to (purpose)
- How (mechanism)
- What they were told (notice version)

Step 3: Privacy Notice Requirements

Required Elements (Articles 13-14):

ElementFirst-Party DataThird-Party Data
Controller identityRequiredRequired
DPO contactIf applicableIf applicable
PurposesRequiredRequired
Lawful basisRequiredRequired
RecipientsRequiredRequired
TransfersIf applicableIf applicable
RetentionRequiredRequired
RightsRequiredRequired
WithdrawalIf consentIf consent
Complaint rightRequiredRequired
SourceN/ARequired

Step 4: Data Subject Rights

Rights Framework:

RightTimelineMarketing Impact
Access (Art. 15)1 monthProvide all marketing data
Rectification (Art. 16)1 monthUpdate preferences
Erasure (Art. 17)1 monthRemove from lists
Restriction (Art. 18)1 monthPause processing
Portability (Art. 20)1 monthExport in machine format
Objection (Art. 21)Immediate for marketingStop direct marketing

Step 5: Documentation & Records

Required Documentation:

  1. Records of Processing Activities (ROPA)
  2. Legitimate Interest Assessments
  3. Consent records and mechanisms
  4. Privacy notices (versioned)
  5. Data Subject Request log
  6. Breach notification procedures

Examples

Example 1: Marketing Email Consent Flow

Input:

Design a GDPR-compliant consent flow for:
- SaaS product newsletter
- Product updates
- Promotional offers
- Third-party partner offers

Output:

## GDPR-Compliant Email Consent Flow

### Consent Collection UI

---

**Signup Form Fields:**

Email: [________________]

[ ] I agree to receive the monthly newsletter with industry insights [ ] I agree to receive product updates and feature announcements [ ] I agree to receive promotional offers and discounts [ ] I agree to receive relevant offers from our trusted partners

[Sign Up]

By signing up, you confirm you've read our [Privacy Notice]. You can withdraw consent anytime via unsubscribe link or contacting us.


**Design Requirements:**
- All checkboxes unchecked by default
- No "select all" option
- Each purpose separate
- Privacy notice linked, not buried
- No dark patterns

---

### Consent Record Structure

```json
{
  "email": "[email protected]",
  "consents": [
    {
      "purpose": "newsletter",
      "granted": true,
      "timestamp": "2026-01-31T10:30:00Z",
      "source": "signup_form_v3",
      "notice_version": "privacy_v2.1"
    },
    {
      "purpose": "product_updates",
      "granted": true,
      "timestamp": "2026-01-31T10:30:00Z",
      "source": "signup_form_v3",
      "notice_version": "privacy_v2.1"
    },
    {
      "purpose": "promotional",
      "granted": false,
      "timestamp": null,
      "source": null,
      "notice_version": null
    },
    {
      "purpose": "third_party",
      "granted": false,
      "timestamp": null,
      "source": null,
      "notice_version": null
    }
  ],
  "ip_address": "192.168.1.1",
  "user_agent": "Mozilla/5.0..."
}

Email Footer (Required)

---
You're receiving this because you subscribed to our [newsletter/updates].

Manage preferences: [link]
Unsubscribe from this list: [link]
Unsubscribe from all: [link]

[Company Name]
[Address]
[Contact Email]

Preference Center

SubscriptionStatusAction
Monthly Newsletter[ON/OFF]Industry insights and tips
Product Updates[ON/OFF]New features and improvements
Promotional Offers[ON/OFF]Discounts and special deals
Partner Offers[ON/OFF]Relevant third-party offers

[Update Preferences] [Unsubscribe from All]


Compliance Checklist

  • All consents granular (separate checkboxes)
  • Checkboxes unchecked by default
  • Clear description of each purpose
  • Privacy notice accessible
  • Withdrawal mechanism clear
  • Consent records stored
  • Double opt-in implemented
  • Unsubscribe in every email
  • Preference center available

### Example 2: Legitimate Interest Assessment

**Input:**

We want to email our existing customers about related products. Do we need consent or can we use legitimate interest?


**Output:**

Legitimate Interest Assessment: Customer Cross-Sell

Summary

You can likely rely on legitimate interest (not consent) for emailing existing customers about similar products, but must complete this assessment and offer easy opt-out.


Three-Part LIA Test

1. Purpose Test: Is There a Legitimate Interest?

Interest: Promote related products to existing customers Legitimacy: Yes - recognized business interest in customer development Benefit: Revenue growth, customer relationship deepening

PASS


2. Necessity Test: Is Processing Necessary?

QuestionAnswer
Is email necessary to achieve the interest?Yes - direct communication channel
Is there a less intrusive way?In-app notifications possible but less effective
Is the processing proportionate?Yes - limited frequency, relevant content

PASS (with conditions)

Conditions:

  • Limit to genuinely related products
  • Reasonable frequency (not daily)
  • Honor opt-outs immediately

3. Balancing Test: Individual Rights vs. Your Interest

FactorAssessment
Nature of dataBasic contact info - low sensitivity
Reasonable expectationsCustomers expect marketing from sellers
RelationshipExisting customer relationship
Impact on individualMinor inconvenience, easy to opt out
SafeguardsOpt-out in every email

PASS


Conclusion

Lawful Basis: Legitimate Interest (Article 6(1)(f))

Requirements for Compliance:

  1. Document this LIA and keep on file
  2. Include in privacy notice: "We may contact existing customers about similar products based on legitimate interest. You can opt out at any time."
  3. Easy opt-out: Every email must have unsubscribe
  4. Honor preferences: Immediate suppression on opt-out
  5. Similar products only: Don't expand to unrelated offerings
  6. Reasonable frequency: No more than weekly

Template Email Footer

You're receiving this as a valued [Company] customer.

Not interested in product updates?
[Opt out of marketing] | [Manage preferences]

This email was sent based on our legitimate interest in keeping
customers informed about relevant products. See our Privacy Notice
for details and your rights.

When This Doesn't Apply

Use consent instead if:

  • Products are significantly different
  • Customer bought once 2+ years ago
  • You acquired data from third party
  • Customer previously opted out
  • Emails are primarily promotional (not informational)

## Skill Boundaries

### What This Skill Does Well
- Explaining GDPR requirements
- Drafting compliant language
- Creating documentation templates
- Identifying compliance gaps

### What This Skill Cannot Do
- Provide legal advice
- Know your specific jurisdiction nuances
- Guarantee regulatory acceptance
- Replace DPO consultation

### When to Escalate to Human
- Complex cross-border transfers
- Regulatory investigation
- Data breach response
- Novel processing activities

## Iteration Guide

**Follow-up Prompts:**
- "Draft the privacy notice section for [activity]"
- "How do we handle a right to erasure request?"
- "What documentation do we need for [processing]?"
- "Is this cookie banner compliant?"

## References

- GDPR Text (Regulation 2016/679)
- EDPB Guidelines on Consent
- ICO Direct Marketing Guidance
- CNIL Cookie Guidelines

## Related Skills

- `terms-analyzer` - Terms of service review
- `contract-review` - DPA analysis
- `nda-generator` - Confidentiality

## Skill Metadata

- **Domain**: Legal / Marketing
- **Complexity**: Intermediate
- **Mode**: centaur
- **Time to Value**: 1-2 hours per assessment
- **Prerequisites**: Basic GDPR familiarity

GitHub 저장소

guia-matthieu/clawfu-skills
경로: skills/legal/gdpr-compliance
0
ai-skillsanthropicclaude-codeclaude-skillsmarketingmcp-server

연관 스킬

llamaguard

기타

LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.

스킬 보기

cost-optimization

기타

이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.

스킬 보기

quantizing-models-bitsandbytes

기타

이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.

스킬 보기

dispatching-parallel-agents

기타

이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.

스킬 보기