compliance-check

compliance-check is a skill for Claude Code from evgenii-studitskikh/Claude-Code-SaaS-Studio. It costs 38 tokens per session (721 once invoked), scanned A, original, MIT.

A readiness review for GDPR, the European Union’s data-privacy law, and a limited SOC 2 check, a review of security and trust controls. It inventories personal data, checks privacy documents and user data requests, and reports PASS or GAP items.

In plain words
What is it for?
Use it to review product, architecture, and data-model documents; list personal data and where it is stored; check export and deletion paths; and create a prioritized compliance report.
Why use it?
It helps reveal missing privacy foundations before a SaaS product stores real customer data. It also shows which issues need attention before users are onboarded.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool.

Good fit Use it to review product, architecture, and data-model documents; list personal data and where it is stored; check export and deletion paths; and create a prioritized compliance report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add evgenii-studitskikh/Claude-Code-SaaS-Studio --skill compliance-check
Clone the repo
git clone --depth 1 https://github.com/evgenii-studitskikh/Claude-Code-SaaS-Studio

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for compliance-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check/github.svg)](https://agentmods.dev/skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check)
Your own site
<a href="https://agentmods.dev/skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check"><img src="https://agentmods.dev/badge/skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for compliance-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check"><img src="https://agentmods.dev/badge/skills/evgenii-studitskikh/claude-code-saas-studio/compliance-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 721 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.00721
Opus 5 $0.00019 $0.00360
Sonnet 5 $0.00008 $0.00144
Haiku 4.5 $0.00004 $0.00072

Measured 9d ago against content hash f387574c76bf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

compliance-check scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/compliance-check/SKILL.md · 22 lines

How it starts

The opening of the file, as written. The whole thing — 22 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Prevent the common mistake of shipping a SaaS with real user data before the minimum legal and trust foundations are in place. By reading the PRD, architecture, and data-model docs, the skill builds an inventory of every data item collected or stored, flags which items are PII, traces where each item lives (Supabase, Stripe, Vercel, or a third party), and checks whether the app has the policy documents and code paths needed to honor GDPR data-subject rights (export and delete). It then scores each compliance item as PASS or GAP and produces a prioritized list of the open gaps to close before onboarding real users. Non-autonomous: drafts are presented and require explicit approval before any file is written.

Phases

  1. Load context — read docs/specs/prd.md and docs/specs/architecture.md; also read docs/specs/data-model.md if it exists. If the PRD is missing, stop and direct the user to /write-prd. Extract what data the app collects, from whom, and for what purpose.
  2. Data inventory — build a table of every data item collected or stored, with columns: Item, Is PII (yes/no), Storage location (Supabase / Stripe / Vercel / other), Retention period (known or TBD). Present the table to the user for corrections and additions before proceeding.
  3. Policies & rights — check for the presence of: (a) a privacy policy stub and Terms of Service; (b) a DPA / subprocessors list covering at minimum Supabase, Stripe, and Vercel; (c) a data-export path that lets a user or tenant download their data; (d) a data-deletion path that removes or anonymizes PII on request; (e) cookie consent if any tracking cookies are used; (f) (SOC 2-lite) an audit trail — key events (authentication, billing changes, and destructive admin actions) are logged to a tamper-evident log or append-only audit_events table. For each item, mark PASS (exists and adequate), GAP (missing or incomplete), or N/A (not applicable). Under full review, confirm each item with the user; under lean, present the full checklist and confirm once; under solo, write then summarize.
  4. Draft — fill .claude/templates/compliance.md into docs/specs/compliance.md with the data inventory table and the PASS/GAP checklist. Present the draft and await explicit approval before writing the file.
  5. Verdict — list all open GAPs in priority order (blocking: items that affect real-user data handling; important: items needed before public launch; advisory: best-practice items). Make clear which GAPs must be closed before the app can handle real user data.

Read the full file on GitHub · 22 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 22 lines · 38 tokens per session scan A f387574c76bf

Subscribe to this mod's changes

compliance-check is a skill published in the GitHub repository evgenii-studitskikh/Claude-Code-SaaS-Studio (1 stars, last pushed 2mo ago), licensed MIT. It adds 38 tokens to every session and 721 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories