From security-tools
[STUB - Not implemented] Privacy compliance with GDPR/CCPA consent management and data minimization. PROACTIVELY activate for: [TODO: Define on implementation]. Triggers: [TODO: Define on implementation]
How this skill is triggered — by the user, by Claude, or both
Slash command
/security-tools:privacy-consentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **STUB: This skill is not yet implemented**
STUB: This skill is not yet implemented
This placeholder preserves the documented plugin structure. See parent plugin README for planned capabilities.
// WRONG - track before consent
analytics.init();
analytics.track('page_view');
// CORRECT - check consent first
if (await userConsent.hasAnalyticsConsent()) {
analytics.init();
analytics.track('page_view');
}
npx claudepluginhub agentient/vibekit --plugin security-toolsEmbeds privacy protections (data minimization, consent, encryption, retention) into app architecture, databases, and APIs from the start. References GDPR, CCPA, LGPD.
Provides GDPR, CCPA, LGPD, and PIPEDA compliance guidance including consent management, data subject rights, minimization patterns in Python, retention policies, and checklists.
Guides implementing GDPR-valid consent under Article 7 and 4(11), covering five requirements, pre-ticked box prohibition, audit checklists, and patterns. Useful for compliant consent UIs.