PII Detector (Compliance Guardrail)
Auto-checks forms, schemas, auth flows and APIs for personal-data risks before Claude writes the code, mapped to US privacy regulations.
Security & ReviewIntermediate★ 130⑂ 14AI score 8/10Last updated: May 26, 2026
What it does
- Auto-triggers on forms, schemas, migrations, auth flows, API routes, webhooks, seed/factory files, delete/export functions, and cron jobs.
- Detects sensitive field names (
email,ssn,cvv,dob,token,biometric,ip_address...) and runs checks before generating code, then emits already-fixed code. - Applies CCPA/CPRA, HIPAA, PCI-DSS, COPPA, GLBA, BIPA, FERPA and the FTC Act, translated into concrete code requirements.
- Three modes — planning/review, generation, and full repo scan — with a compact 🔴 / 🟡 / 🟢 finding report and language-matched fixes.
Who it's for
- Backend and full-stack developers handling signup, payment, health, or student data
- Tech leads and security/compliance owners who want privacy review baked into coding
- Startups shipping SaaS to the US market
Example uses
- Ask for a signup form and get code with password hashing, minimized data collection, and deletion-ready fields.
- Design a payments model and get PCI-DSS callouts: never store CVV, tokenize card numbers, never log payment bodies.
- Say "audit my repo for PII" and receive a structured report with file and line references.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/goSprinto/compliance-skills/HEAD/pii-detector/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the pii-detector folder from the GitHub repo goSprinto/compliance-skills into my ~/.claude/skills/pii-detector/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/goSprinto/compliance-skills.git && mkdir -p ~/.claude/skills && cp -r compliance-skills/pii-detector ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install Claude Code and open a terminal.
- Clone the repo:
git clone https://github.com/goSprinto/compliance-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r compliance-skills/pii-detector ~/.claude/skills/ - Verify the
layers/,modes/,rules/, andpatterns/subfolders came along — the skill references them. - Restart Claude Code and try "help me design a user schema" to confirm the skill fires.
View source on GitHub ↗License: MIT