compliance-check

Audits web projects for GDPR and ePrivacy compliance gaps across cookies, privacy policies, and data handling.

Updated Jun 2, 2026
One-click install
npx skills add https://github.com/MohamedSayedK/omnigrid --skill compliance-check-mohamedsayedk
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: compliance-check
Source: https://github.com/MohamedSayedK/omnigrid/tree/main/assets/core/skills/compliance-check
Command: npx skills add https://github.com/MohamedSayedK/omnigrid --skill compliance-check-mohamedsayedk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Launching a web product in the EU/UK without a structured privacy audit risks regulatory violations — missing cookie consent, incomplete privacy policies, no data-deletion endpoints, and undocumented cross-border data transfers. This Skill performs a systematic GDPR + ePrivacy technical audit so gaps surface before launch, not after a complaint. ## Core Features & Use Cases - Cookie and tracking audit: Greps for cookie-setting code, analytics SDKs (Google Analytics, Mixpanel, PostHog, Segment), and consent libraries, then verifies consent is obtained before tracking scripts load. - Legal page and user-rights checks: Verifies privacy policy and terms routes exist, cover required disclosures, and that delete-account, data-export, and opt-out mechanisms are implemented. - DFD-driven data handling analysis: Consumes the data flow diagram at omnigrid/artifacts/architecture/dfd.md to trace PII, PCI, and secrets across the system, flag cross-border transfers to non-EU vendors, and identify third-party processors needing DPAs — with a grep-based fallback when no DFD exists. - Use Case: Before launching a SaaS app to European users, run the audit to get a findings table (FAIL/WARN/PASS per area) and a GDPR readiness verdict, then fix the flagged items like gating analytics behind a consent callback. ## Quick Start Run a GDPR and cookie-consent compliance audit on this web project and report any findings before our EU launch.

Frequently Asked Questions about compliance-check

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check my website for GDPR compliance?▼

Run a structured audit covering cookie consent timing, privacy policy completeness, data deletion endpoints, and data handling practices. This Skill greps for analytics SDKs, consent libraries, and legal pages, then outputs a FAIL/WARN/PASS findings table with a GDPR readiness verdict.

How to audit cookie consent before analytics scripts load?▼

The audit greps for cookie-setting code, analytics SDKs like Google Analytics and PostHog, and consent libraries, then checks whether consent is obtained before tracking scripts execute. Loading analytics before consent is flagged as a FAIL finding.

Does this compliance audit replace legal advice?▼

No. The audit identifies technical gaps such as missing delete-account endpoints or incomplete privacy policies, but it is not legal advice. You should consult a lawyer for actual legal compliance determinations.

Can I run a GDPR audit on a non-web project?▼

No. This Skill requires a web project shape and is blocked on non-web projects by the stack-gate Hook. It is designed for sites with cookies, analytics, auth systems, and user-facing legal pages.

What happens if no data flow diagram exists for the audit?▼

The Skill falls back to grep-based discovery of PII, secrets, and third-party services, and surfaces a degraded-mode banner in the output. Running the /dfd skill first gives a canonical classifications table for more accurate data-handling analysis.